24 lines
363 B
TypeScript
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 }
|