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; } interface MyObjectRoundChangeMainRef { cardId:object|null firstName:object|null lastName:object|null [key: string]: any; } export type { dataPost, changeRoundEdit, MyObjectRoundChangeRef, MyObjectRoundChangeMainRef }