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 };