diff --git a/src/modules/01_dashboard/interface/Main.ts b/src/modules/01_dashboard/interface/Main.ts new file mode 100644 index 0000000..faddc39 --- /dev/null +++ b/src/modules/01_dashboard/interface/Main.ts @@ -0,0 +1,34 @@ +interface InboxList { + id: string; + subject: string; + body: string; + receiverUserId: string; + payload: Object | null; + isOpen: boolean; + receiveDate: Date | null; + openDate: Date | null; + createdFullName?: string; + createdAt?: Date; +} + +interface InboxDetail { + no: string; + sender: string; + subject: string; + body: string; + ratingModel: number; + receiveDate?: string; + payload: Object | null; + isOpen: boolean; +} + +interface MenuMainList { + icon: string; + title: string; + sub: string; + color: string; + path: string; + active: boolean; +} + +export type { InboxList, InboxDetail, MenuMainList }; diff --git a/src/modules/01_dashboard/views/Dashboard.vue b/src/modules/01_dashboard/views/Dashboard.vue index 85c0349..d375aee 100644 --- a/src/modules/01_dashboard/views/Dashboard.vue +++ b/src/modules/01_dashboard/views/Dashboard.vue @@ -1,6 +1,5 @@