mirror of
https://github.com/bitwarden/browser
synced 2026-01-09 03:53:53 +00:00
6 lines
244 B
TypeScript
6 lines
244 B
TypeScript
export abstract class ExportService {
|
|
getExport: (format?: 'csv' | 'json') => Promise<string>;
|
|
getOrganizationExport: (organizationId: string, format?: 'csv' | 'json') => Promise<string>;
|
|
getFileName: (prefix?: string) => string;
|
|
}
|