33 lines
469 B
TypeScript
33 lines
469 B
TypeScript
interface DataOption {
|
|
id: string
|
|
name: string
|
|
}
|
|
|
|
interface DataDateMonthObject {
|
|
month: number
|
|
year: number
|
|
}
|
|
interface FormRef {
|
|
date: object | null
|
|
reason: object | null
|
|
[key: string]: any
|
|
}
|
|
interface notiType {
|
|
id: string
|
|
sender: string
|
|
body: string
|
|
timereceive: string | null
|
|
}
|
|
|
|
interface LocationObject {
|
|
latitude: number
|
|
longitude: number
|
|
}
|
|
|
|
export type {
|
|
DataOption,
|
|
FormRef,
|
|
notiType,
|
|
DataDateMonthObject,
|
|
LocationObject,
|
|
}
|