19 lines
360 B
TypeScript
19 lines
360 B
TypeScript
interface DataActing {
|
|
dateStart: null | Date;
|
|
dateEnd: null | Date;
|
|
posNo: string;
|
|
position: string;
|
|
status: boolean;
|
|
}
|
|
|
|
interface DatAssistance {
|
|
dateStart: Date | null;
|
|
dateEnd: Date | null;
|
|
agency: string;
|
|
commandNo: string;
|
|
document: string;
|
|
commandName: string;
|
|
// isUpload: boolean;
|
|
}
|
|
|
|
export type { DataActing, DatAssistance };
|