UNPKG

password-manager-autofill-utilities

Version:

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

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