1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-22 11:13:46 +00:00

decrypt many collections service function

This commit is contained in:
Kyle Spearrin
2018-07-06 12:40:36 -04:00
parent 4aebc4ab3d
commit 4ae4b667ff
2 changed files with 15 additions and 9 deletions

View File

@@ -9,6 +9,7 @@ export abstract class CollectionService {
clearCache: () => void;
encrypt: (model: CollectionView) => Promise<Collection>;
decryptMany: (collections: Collection[]) => Promise<CollectionView[]>;
get: (id: string) => Promise<Collection>;
getAll: () => Promise<Collection[]>;
getAllDecrypted: () => Promise<CollectionView[]>;