mirror of
https://github.com/bitwarden/browser
synced 2025-12-19 01:33:33 +00:00
web vault and organizations support
This commit is contained in:
@@ -5,7 +5,9 @@ export interface ImportOption {
|
||||
name: string;
|
||||
}
|
||||
export abstract class ImportService {
|
||||
importOptions: ImportOption[];
|
||||
import: (importer: Importer, fileContents: string) => Promise<any>;
|
||||
getImporter: (format: string) => Importer;
|
||||
featuredImportOptions: ImportOption[];
|
||||
regularImportOptions: ImportOption[];
|
||||
getImportOptions: () => ImportOption[];
|
||||
import: (importer: Importer, fileContents: string, organizationId?: string) => Promise<Error>;
|
||||
getImporter: (format: string, organization?: boolean) => Importer;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user