mirror of
https://github.com/bitwarden/browser
synced 2026-02-16 08:34:39 +00:00
16 lines
480 B
TypeScript
16 lines
480 B
TypeScript
import { StateProvider } from "@bitwarden/common/platform/state";
|
|
|
|
import { LegacyEncryptorProvider } from "../cryptography/legacy-encryptor-provider";
|
|
|
|
import { ExtensionRegistry } from "./extension-registry.abstraction";
|
|
|
|
export class ExtensionService {
|
|
constructor(
|
|
private readonly registry: ExtensionRegistry,
|
|
private readonly stateProvider: StateProvider,
|
|
private readonly encryptorProvider: LegacyEncryptorProvider,
|
|
) {}
|
|
|
|
// TODO: implement the service
|
|
}
|