2023-11-02 17:32:57 +07:00
|
|
|
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;
|
|
|
|
|
}
|
2023-11-03 17:54:28 +07:00
|
|
|
interface MyObjectRoundChangeMainRef {
|
|
|
|
|
cardId:object|null
|
|
|
|
|
firstName:object|null
|
|
|
|
|
lastName:object|null
|
|
|
|
|
[key: string]: any;
|
|
|
|
|
}
|
2023-11-02 17:32:57 +07:00
|
|
|
export type {
|
|
|
|
|
dataPost,
|
|
|
|
|
changeRoundEdit,
|
2023-11-03 17:54:28 +07:00
|
|
|
MyObjectRoundChangeRef,
|
|
|
|
|
MyObjectRoundChangeMainRef
|
2023-11-02 17:32:57 +07:00
|
|
|
}
|