mirror of
https://github.com/bitwarden/web
synced 2026-01-10 20:43:59 +00:00
10 lines
391 B
TypeScript
10 lines
391 B
TypeScript
import { Injectable } from "@angular/core";
|
|
|
|
import { PasswordRepromptService as BasePasswordRepromptService } from "jslib-angular/services/passwordReprompt.service";
|
|
import { PasswordRepromptComponent } from "../app/components/password-reprompt.component";
|
|
|
|
@Injectable()
|
|
export class PasswordRepromptService extends BasePasswordRepromptService {
|
|
component = PasswordRepromptComponent;
|
|
}
|