mirror of
https://github.com/bitwarden/browser
synced 2025-12-19 17:53:39 +00:00
14 lines
494 B
TypeScript
14 lines
494 B
TypeScript
import { CollectionView } from "@bitwarden/admin-console/common";
|
|
import { CipherView } from "@bitwarden/common/vault/models/view/cipher.view";
|
|
import { FolderView } from "@bitwarden/common/vault/models/view/folder.view";
|
|
|
|
export class ImportResult {
|
|
success = false;
|
|
errorMessage: string;
|
|
ciphers: CipherView[] = [];
|
|
folders: FolderView[] = [];
|
|
folderRelationships: [number, number][] = [];
|
|
collections: CollectionView[] = [];
|
|
collectionRelationships: [number, number][] = [];
|
|
}
|