hrms-mgt/src/modules/09_leave/interface/response/specialTime.ts

12 lines
256 B
TypeScript
Raw Normal View History

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