mirror of
https://github.com/bitwarden/browser
synced 2025-12-11 05:43:41 +00:00
Fix build errors for strict templates (#4134)
This commit is contained in:
@@ -1,3 +1,5 @@
|
||||
export type InputTypes = "text" | "password" | "number" | "datetime-local" | "email" | "checkbox";
|
||||
|
||||
export abstract class BitFormFieldControl {
|
||||
ariaDescribedBy: string;
|
||||
id: string;
|
||||
@@ -5,7 +7,7 @@ export abstract class BitFormFieldControl {
|
||||
required: boolean;
|
||||
hasError: boolean;
|
||||
error: [string, any];
|
||||
type?: "text" | "password";
|
||||
type?: InputTypes;
|
||||
spellcheck?: boolean;
|
||||
focus?: () => void;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user