38 lines
719 B
TypeScript
38 lines
719 B
TypeScript
interface DataPost {
|
|
cardId: string;
|
|
firstName: string;
|
|
lastName: string;
|
|
page: number;
|
|
pageSize: number;
|
|
selectedNodeId?: string | null;
|
|
selectedNode?: 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,
|
|
};
|