mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-16 21:00:31 +00:00
10 lines
155 B
TypeScript
10 lines
155 B
TypeScript
export enum Errors {
|
|
RESOURCE_NOT_EXPORTABLE = 'RESOURCE_NOT_EXPORTABLE',
|
|
}
|
|
|
|
export enum ExportFormat {
|
|
Csv = 'csv',
|
|
Pdf = 'pdf',
|
|
Xlsx = 'xlsx',
|
|
}
|