mirror of
https://github.com/bitwarden/browser
synced 2025-12-16 16:23:44 +00:00
convert services to abstractions
This commit is contained in:
@@ -8,7 +8,7 @@ import { FolderResponse } from '../models/response/folderResponse';
|
||||
|
||||
import { ApiService } from '../abstractions/api.service';
|
||||
import { CryptoService } from '../abstractions/crypto.service';
|
||||
import { FolderService as FolderServiceInterface } from '../abstractions/folder.service';
|
||||
import { FolderService as FolderServiceAbstraction } from '../abstractions/folder.service';
|
||||
import { StorageService } from '../abstractions/storage.service';
|
||||
import { UserService } from '../abstractions/user.service';
|
||||
|
||||
@@ -16,7 +16,7 @@ const Keys = {
|
||||
foldersPrefix: 'folders_',
|
||||
};
|
||||
|
||||
export class FolderService implements FolderServiceInterface {
|
||||
export class FolderService implements FolderServiceAbstraction {
|
||||
decryptedFolderCache: any[];
|
||||
|
||||
constructor(private cryptoService: CryptoService, private userService: UserService,
|
||||
|
||||
Reference in New Issue
Block a user