mirror of
https://github.com/bitwarden/browser
synced 2025-12-16 16:23:44 +00:00
* first draft at an idea dependency graph * ignore existing errors * remove conflicting rule regarding internal platform logic in libs * review: allow components to import from platform
14 lines
550 B
TypeScript
14 lines
550 B
TypeScript
// This import has been flagged as unallowed for this class. It may be involved in a circular dependency loop.
|
|
// eslint-disable-next-line no-restricted-imports
|
|
import { CollectionWithIdRequest } from "@bitwarden/admin-console/common";
|
|
|
|
import { CipherRequest } from "../../vault/models/request/cipher.request";
|
|
|
|
import { KvpRequest } from "./kvp.request";
|
|
|
|
export class ImportOrganizationCiphersRequest {
|
|
ciphers: CipherRequest[] = [];
|
|
collections: CollectionWithIdRequest[] = [];
|
|
collectionRelationships: KvpRequest<number, number>[] = [];
|
|
}
|