bitwarden-estensione-browser/apps/browser/src/popup/services/password-reprompt.service.ts

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

11 lines
393 B
TypeScript
Raw Normal View History

import { Injectable } from "@angular/core";
2022-06-14 17:10:53 +02:00
import { PasswordRepromptService as BasePasswordRepromptService } from "@bitwarden/angular/services/passwordReprompt.service";
import { PasswordRepromptComponent } from "../components/password-reprompt.component";
@Injectable()
export class PasswordRepromptService extends BasePasswordRepromptService {
component = PasswordRepromptComponent;
}