hrms-recruit/src/interface/main/index.ts

25 lines
363 B
TypeScript
Raw Normal View History

2023-03-14 18:48:33 +07:00
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 }