mirror of
https://github.com/bitwarden/jslib
synced 2025-12-23 11:43:51 +00:00
6 lines
264 B
TypeScript
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;
|
|
}
|