1
0
mirror of https://github.com/bitwarden/jslib synced 2025-12-23 11:43:51 +00:00
Files
jslib/src/abstractions/export.service.ts
Kyle Spearrin e7b5868aad export to json
2018-12-17 10:32:02 -05:00

6 lines
264 B
TypeScript

export abstract class ExportService {
getExport: (format?: 'csv' | 'json') => Promise<string>;
getOrganizationExport: (organizationId: string, format?: 'csv' | 'json') => Promise<string>;
getFileName: (prefix?: string, extension?: string) => string;
}