1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-18 01:03:35 +00:00

export to json

This commit is contained in:
Kyle Spearrin
2018-12-17 10:32:02 -05:00
parent 94f103c474
commit e7b5868aad
2 changed files with 91 additions and 50 deletions

View File

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