mirror of
https://github.com/bitwarden/jslib
synced 2026-01-04 09:33:14 +00:00
9 lines
419 B
TypeScript
9 lines
419 B
TypeScript
import { EventView } from '../models/view/eventView';
|
|
|
|
export abstract class ExportService {
|
|
getExport: (format?: 'csv' | 'json' | 'encrypted_json') => Promise<string>;
|
|
getOrganizationExport: (organizationId: string, format?: 'csv' | 'json' | 'encrypted_json') => Promise<string>;
|
|
getEventExport: (events: EventView[]) => Promise<string>;
|
|
getFileName: (prefix?: string, extension?: string) => string;
|
|
}
|