hrms-mgt/src/modules/09_leave/interface/request/workTime.ts

21 lines
368 B
TypeScript
Raw Normal View History

interface workingTimeDataRowType {
morning: string
morningEnd: string
afternoon: string
afternoonEnd: string
reason: string
status: number
}
interface formData {
morning:string
morningEnd:string
afternoon:string
afternoonEnd:string
reason:string
status:boolean
}
export type {
workingTimeDataRowType,
formData
}