2023-11-14 17:47:43 +07:00
|
|
|
interface DataOption {
|
|
|
|
|
id: string
|
|
|
|
|
name: string
|
|
|
|
|
}
|
2023-11-29 17:46:19 +07:00
|
|
|
|
|
|
|
|
interface DataDateMonthObject {
|
|
|
|
|
month: number
|
|
|
|
|
year: number
|
|
|
|
|
}
|
2023-11-14 17:47:43 +07:00
|
|
|
interface FormRef {
|
|
|
|
|
date: object | null
|
|
|
|
|
reason: object | null
|
|
|
|
|
[key: string]: any
|
|
|
|
|
}
|
2023-11-17 11:28:13 +07:00
|
|
|
interface notiType {
|
|
|
|
|
id: string
|
|
|
|
|
sender: string
|
|
|
|
|
body: string
|
|
|
|
|
timereceive: Date
|
|
|
|
|
}
|
2023-11-28 13:36:08 +07:00
|
|
|
|
2023-12-08 13:15:13 +07:00
|
|
|
interface LocationObject {
|
|
|
|
|
latitude: number
|
|
|
|
|
longitude: number
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export type { DataOption, FormRef, notiType, DataDateMonthObject, LocationObject}
|