7 lines
373 B
TypeScript
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";
|