34 lines
624 B
TypeScript
34 lines
624 B
TypeScript
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,
|
|
};
|