bitwarden-estensione-browser/libs/common/src/abstractions/passwordReprompt.service.ts

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

6 lines
166 B
TypeScript
Raw Normal View History

2021-04-29 13:31:21 +02:00
export abstract class PasswordRepromptService {
protectedFields: () => string[];
showPasswordPrompt: () => Promise<boolean>;
enabled: () => Promise<boolean>;
2021-04-29 13:31:21 +02:00
}