2023-11-02 17:32:57 +07:00
|
|
|
interface dataPost {
|
2023-11-24 17:28:37 +07:00
|
|
|
cardId: string;
|
|
|
|
|
firstName: string;
|
|
|
|
|
lastName: string;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
interface DataOption {
|
|
|
|
|
id: string;
|
|
|
|
|
name: string;
|
2023-11-02 17:32:57 +07:00
|
|
|
}
|
|
|
|
|
interface changeRoundEdit {
|
2023-11-24 17:28:37 +07:00
|
|
|
round: string;
|
|
|
|
|
date: string;
|
|
|
|
|
reson: string;
|
|
|
|
|
effectiveDate: Date | null;
|
2023-11-02 17:32:57 +07:00
|
|
|
}
|
|
|
|
|
interface MyObjectRoundChangeRef {
|
2023-11-24 17:28:37 +07:00
|
|
|
round: object | null;
|
|
|
|
|
effectiveDate: object | null;
|
|
|
|
|
[key: string]: any;
|
2023-11-02 17:32:57 +07:00
|
|
|
}
|
2023-11-03 17:54:28 +07:00
|
|
|
interface MyObjectRoundChangeMainRef {
|
2023-11-24 17:28:37 +07:00
|
|
|
cardId: object | null;
|
|
|
|
|
firstName: object | null;
|
|
|
|
|
lastName: object | null;
|
|
|
|
|
[key: string]: any;
|
2023-11-03 17:54:28 +07:00
|
|
|
}
|
2023-11-02 17:32:57 +07:00
|
|
|
export type {
|
2023-11-24 17:28:37 +07:00
|
|
|
dataPost,
|
|
|
|
|
changeRoundEdit,
|
|
|
|
|
MyObjectRoundChangeRef,
|
|
|
|
|
MyObjectRoundChangeMainRef,
|
|
|
|
|
DataOption,
|
|
|
|
|
};
|