hrms-checkin/src/interface/index/Main.ts

17 lines
276 B
TypeScript
Raw Normal View History

2023-11-14 17:47:43 +07:00
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 }