21 lines
395 B
TypeScript
21 lines
395 B
TypeScript
|
|
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;
|
||
|
|
}
|
||
|
|
export type {
|
||
|
|
dataPost,
|
||
|
|
changeRoundEdit,
|
||
|
|
MyObjectRoundChangeRef
|
||
|
|
}
|