mirror of
https://github.com/bitwarden/browser.git
synced 2024-11-06 09:20:43 +01:00
added missing implements
This commit is contained in:
parent
6be48873cc
commit
258178dc16
@ -1,8 +1,8 @@
|
||||
import { CipherData } from '../models/data';
|
||||
import { CipherData } from '../models/data/cipherData';
|
||||
|
||||
import { Cipher } from '../models/domain';
|
||||
import { Field } from '../models/domain';
|
||||
import { SymmetricCryptoKey } from '../models/domain';
|
||||
import { Cipher } from '../models/domain/cipher';
|
||||
import { Field } from '../models/domain/field';
|
||||
import { SymmetricCryptoKey } from '../models/domain/symmetricCryptoKey';
|
||||
|
||||
export interface CipherService {
|
||||
decryptedCipherCache: any[];
|
||||
|
@ -2,6 +2,7 @@ import { CollectionData } from '../models/data/collectionData';
|
||||
|
||||
import { Collection } from '../models/domain/collection';
|
||||
|
||||
import { CollectionService as CollectionServiceInterface } from '../abstractions/collection.service';
|
||||
import { CryptoService } from '../abstractions/crypto.service';
|
||||
import { StorageService } from '../abstractions/storage.service';
|
||||
import { UserService } from '../abstractions/user.service';
|
||||
@ -10,7 +11,7 @@ const Keys = {
|
||||
collectionsPrefix: 'collections_',
|
||||
};
|
||||
|
||||
export class CollectionService {
|
||||
export class CollectionService implements CollectionServiceInterface {
|
||||
decryptedCollectionCache: any[];
|
||||
|
||||
constructor(private cryptoService: CryptoService, private userService: UserService,
|
||||
|
@ -6,7 +6,7 @@ import { ApiService } from '../abstractions/api.service';
|
||||
import { EnvironmentService as EnvironmentServiceInterface } from '../abstractions/environment.service';
|
||||
import { StorageService } from '../abstractions/storage.service';
|
||||
|
||||
export class EnvironmentService {
|
||||
export class EnvironmentService implements EnvironmentServiceInterface {
|
||||
baseUrl: string;
|
||||
webVaultUrl: string;
|
||||
apiUrl: string;
|
||||
|
@ -7,7 +7,7 @@ const Keys = {
|
||||
equivalentDomains: 'equivalentDomains',
|
||||
};
|
||||
|
||||
export class SettingsService {
|
||||
export class SettingsService implements SettingsServiceInterface {
|
||||
private settingsCache: any;
|
||||
|
||||
constructor(private userService: UserService, private storageService: StorageService) {
|
||||
|
Loading…
Reference in New Issue
Block a user