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 }