1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-18 01:03:35 +00:00

other types param now typed with CipherType

This commit is contained in:
Kyle Spearrin
2018-03-02 08:33:57 -05:00
parent 20389402fc
commit dc0befc9be
2 changed files with 4 additions and 2 deletions

View File

@@ -170,7 +170,7 @@ export class CipherService implements CipherServiceAbstraction {
});
}
async getAllDecryptedForDomain(domain: string, includeOtherTypes?: any[]): Promise<CipherView[]> {
async getAllDecryptedForDomain(domain: string, includeOtherTypes?: CipherType[]): Promise<CipherView[]> {
if (domain == null && !includeOtherTypes) {
return Promise.resolve([]);
}