mirror of
https://github.com/bitwarden/browser.git
synced 2025-01-03 18:28:13 +01:00
6 lines
209 B
TypeScript
6 lines
209 B
TypeScript
import { CollectionView } from "@bitwarden/admin-console/common";
|
|
|
|
export abstract class ImportCollectionServiceAbstraction {
|
|
getAllAdminCollections: (organizationId: string) => Promise<CollectionView[]>;
|
|
}
|