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

35 lines
624 B
TypeScript
Raw Normal View History

interface dataPost {
cardId: string;
firstName: string;
lastName: string;
}
interface DataOption {
id: string;
name: 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,
DataOption,
};