ui-for-firebase-authentication
Version:
UI for Firebase Authentication (Firebase UI alternative supporting v9+)
22 lines (21 loc) • 625 B
TypeScript
declare class PasswordEntryBox {
container: HTMLDivElement;
input: HTMLInputElement;
constructor({ hidden, placeholder, minLength, autoComplete }?: {});
setHidden(newHidden: any): void;
reset(): void;
setValue(val: str): void;
getValue(): string;
}
declare class PasswordConfirmingUnit {
constructor({ hidden, minLength, autoComplete }?: {
hidden?: boolean;
minLength?: number;
autoComplete?: string;
});
passwordsMatch(): boolean;
_validate(): void;
getValue(): any;
setValue(val: str): void;
}
export { PasswordEntryBox, PasswordConfirmingUnit };