2023-03-22 13:01:05 +01:00

7 lines
373 B
TypeScript

export type ECivility = "MALE" | "FEMALE" | "OTHERS";
export type EFolderStatus = "LIVE" | "ARCHIVED";
export type EOfficeStatus = "ACTIVATED" | "DESACTIVATED";
export type ENotificationStatus = "READ" | "UNREAD";
export type ECustomerStatus = "VALIDATED" | "PENDING" | "ERRONED";
export type EDocumentStatus = "ASKED" | "DEPOSITED" | "VALIDATED" | "ANCHORED" | "REFUSED";