12 lines
256 B
TypeScript
12 lines
256 B
TypeScript
|
|
interface DataRows {
|
||
|
|
fullname: string | null;
|
||
|
|
date: string | null;
|
||
|
|
dateFix: string | null;
|
||
|
|
type: string;
|
||
|
|
reason: string;
|
||
|
|
timeStamp: string;
|
||
|
|
unapprove?: string; // Make these properties optional
|
||
|
|
approve?: string;
|
||
|
|
}
|
||
|
|
export type { DataRows };
|