16 lines
276 B
TypeScript
16 lines
276 B
TypeScript
interface DataOption {
|
|
id: string
|
|
name: string
|
|
}
|
|
interface FormRef {
|
|
date: object | null
|
|
reason: object | null
|
|
[key: string]: any
|
|
}
|
|
interface notiType {
|
|
id: string
|
|
sender: string
|
|
body: string
|
|
timereceive: Date
|
|
}
|
|
export type { DataOption, FormRef, notiType }
|