import { DateTime } from "../type/date.type"; import { ImageBase64 } from "../type/image.type"; import { GenderType, OfficeVisitorStatus } from "../api/api.schemas"; export type OfficeVisitorReportType = 'Evacuation'; export type ExtendedOfficeVisitorStatus = OfficeVisitorStatus | 'New'; export type OfficeVisitorAction = 'SignInAndPrint' | 'Save' | 'CancelVisit' | 'SignOut' | 'Approve' | 'ReIssue' | 'Close'; export type OfficeVisitorScanResult = { facePhoto?: ImageBase64; firstName: string; lastName: string; dob?: DateTime; gender?: GenderType; };