mirror of
https://github.com/bitwarden/browser
synced 2025-12-19 01:33:33 +00:00
15 lines
454 B
TypeScript
15 lines
454 B
TypeScript
import { CipherView } from "../view/cipherView";
|
|
import { CollectionView } from "../view/collectionView";
|
|
import { FolderView } from "../view/folderView";
|
|
|
|
export class ImportResult {
|
|
success = false;
|
|
missingPassword = false;
|
|
errorMessage: string;
|
|
ciphers: CipherView[] = [];
|
|
folders: FolderView[] = [];
|
|
folderRelationships: [number, number][] = [];
|
|
collections: CollectionView[] = [];
|
|
collectionRelationships: [number, number][] = [];
|
|
}
|