@cranberry-money/shared-constants
Version:
Shared constants for Blueberry platform
21 lines • 961 B
TypeScript
export declare const DOCUMENT_STATUS_PENDING = "pending";
export declare const DOCUMENT_STATUS_GENERATED = "generated";
export declare const DOCUMENT_STATUS_SIGNED = "signed";
export declare const DOCUMENT_STATUS_EXPIRED = "expired";
export declare const DOCUMENT_STATUS: {
readonly PENDING: "pending";
readonly GENERATED: "generated";
readonly SIGNED: "signed";
readonly EXPIRED: "expired";
};
export type DocumentStatus = (typeof DOCUMENT_STATUS)[keyof typeof DOCUMENT_STATUS];
export declare const DOCUMENT_STATUS_LABEL_PENDING = "Pending";
export declare const DOCUMENT_STATUS_LABEL_GENERATED = "Generated";
export declare const DOCUMENT_STATUS_LABEL_SIGNED = "Signed";
export declare const DOCUMENT_STATUS_LABEL_EXPIRED = "Expired";
export declare const DOCUMENT_STATUS_LABELS: Record<DocumentStatus, string>;
export declare const DOCUMENT_STATUS_OPTIONS: {
value: string;
label: string;
}[];
//# sourceMappingURL=documents.d.ts.map