1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-16 16:23:44 +00:00

converted cryptoservice to jslib

This commit is contained in:
Kyle Spearrin
2018-01-08 15:37:11 -05:00
parent e68f7a1141
commit bb98c7e4da
15 changed files with 16 additions and 657 deletions

View File

@@ -1,5 +1,4 @@
import ApiService from './api.service';
import CryptoService from './crypto.service';
import UserService from './user.service';
import { Abstractions, Data, Domain, Request, Response } from '@bitwarden/jslib';
@@ -11,7 +10,7 @@ const Keys = {
export default class FolderService {
decryptedFolderCache: any[];
constructor(private cryptoService: CryptoService, private userService: UserService,
constructor(private cryptoService: Abstractions.CryptoService, private userService: UserService,
private i18nService: any, private apiService: ApiService,
private storageService: Abstractions.StorageService) {
}