hrms-recruit/src/interface/main/index.ts
2023-05-16 22:23:32 +07:00

24 lines
363 B
TypeScript

import { readonly } from 'vue'
interface menuType {
key: number
icon: string
activeIcon: string
label: string
path: string
}
interface notiType {
id: number
sender: string
body: string
timereceive: string
}
interface optionType {
icon: string
label: string
value: string
color: string
}
export type { menuType, notiType, optionType }