mirror of
https://github.com/bitwarden/browser
synced 2026-01-01 08:03:20 +00:00
23 lines
628 B
TypeScript
23 lines
628 B
TypeScript
import { CryptoService } from '../abstractions/crypto.service';
|
|
import { PlatformUtilsService } from '../abstractions/platformUtils.service';
|
|
|
|
export class ContainerService {
|
|
constructor(private cryptoService: CryptoService,
|
|
private platformUtilsService: PlatformUtilsService) {
|
|
}
|
|
|
|
attachToWindow(win: any) {
|
|
if (!win.BitwardenContainerService) {
|
|
win.BitwardenContainerService = this;
|
|
}
|
|
}
|
|
|
|
getCryptoService(): CryptoService {
|
|
return this.cryptoService;
|
|
}
|
|
|
|
getPlatformUtilsService(): PlatformUtilsService {
|
|
return this.platformUtilsService;
|
|
}
|
|
}
|