This commit is contained in:
setthawutttty 2023-10-31 12:09:24 +07:00
parent 21a91881a4
commit 34acdbea0e
4 changed files with 297 additions and 154 deletions

View file

@ -6,14 +6,23 @@ interface RoundRows {
phone: string;
}
interface dataRowRound {
am:string
amOut:string
pm:string
pmOut:string
note:string
status:boolean
am: string
amOut: string
pm: string
pmOut: string
note: string
status: boolean
isDefault: boolean
}
interface MyObjectRoundRef {
am: object | null,
amOut: object | null,
pm: object | null,
pmOut: object | null,
[key: string]: any;
}
export type {
RoundRows,
dataRowRound
dataRowRound,
MyObjectRoundRef
};