UNPKG

password-manager-autofill-utilities

Version:

TypeScript utilities to control password manager autofill behavior across different password managers

15 lines 591 B
import { PasswordManager, HtmlAttributes } from '../types'; import { BasePasswordManagerProvider } from './base'; /** * Bitwarden provider implementation * Uses the data-bwignore attribute to prevent autofill */ export declare class BitwardenProvider extends BasePasswordManagerProvider { readonly manager = PasswordManager.BITWARDEN; /** * Get attributes that prevent Bitwarden from interacting with the field * @returns HTML attributes for Bitwarden ignore behavior */ protected getIgnoreAttributes(): HtmlAttributes; } //# sourceMappingURL=bitwarden.d.ts.map