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

28 lines
566 B
TypeScript
Raw Normal View History

interface dataPost {
cardId: string
firstName: string
lastName: string
}
interface changeRoundEdit {
round: string
date: string
reson: string
effectiveDate: Date | null
}
interface MyObjectRoundChangeRef {
round: object | null
effectiveDate: object | null
[key: string]: any;
}
interface MyObjectRoundChangeMainRef {
cardId:object|null
firstName:object|null
lastName:object|null
[key: string]: any;
}
export type {
dataPost,
changeRoundEdit,
MyObjectRoundChangeRef,
MyObjectRoundChangeMainRef
}