mirror of
https://github.com/bitwarden/browser
synced 2025-12-10 05:13:29 +00:00
* fix: compilation issues with PM client rename * fix: jest compilation * feat: rename all non-breaking platform instances * feat: update SDK
12 lines
398 B
TypeScript
12 lines
398 B
TypeScript
import { PasswordManagerClient } from "@bitwarden/sdk-internal";
|
|
|
|
import { SdkClientFactory } from "../src/platform/abstractions/sdk/sdk-client-factory";
|
|
|
|
export class DefaultSdkClientFactory implements SdkClientFactory {
|
|
createSdkClient(
|
|
...args: ConstructorParameters<typeof PasswordManagerClient>
|
|
): Promise<PasswordManagerClient> {
|
|
throw new Error("Method not implemented.");
|
|
}
|
|
}
|