1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-18 09:13:33 +00:00

exporting organization data

This commit is contained in:
Kyle Spearrin
2018-07-05 14:39:58 -04:00
parent 47ab71e730
commit 87e273252b
3 changed files with 152 additions and 60 deletions

View File

@@ -1,4 +1,5 @@
export abstract class ExportService {
getCsv: () => Promise<string>;
getFileName: () => string;
getExport: (format?: 'csv' | 'json') => Promise<string>;
getOrganizationExport: (organizationId: string, format?: 'csv' | 'json') => Promise<string>;
getFileName: (prefix?: string) => string;
}