mirror of
https://gitlab.com/mbugroup/lti-web-client.git
synced 2026-05-20 13:32:00 +00:00
chore(FE-41): create BaseArea type
This commit is contained in:
@@ -1,10 +1,12 @@
|
||||
import { BaseMetadata } from '@/types/api/api-general';
|
||||
|
||||
export type Area = BaseMetadata & {
|
||||
export type BaseArea = {
|
||||
id: number;
|
||||
name: string;
|
||||
};
|
||||
|
||||
export type Area = BaseMetadata & BaseArea;
|
||||
|
||||
export type CreateAreaPayload = {
|
||||
name: string;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user