mirror of
https://github.com/bitwarden/browser.git
synced 2024-11-23 11:56:00 +01:00
25 lines
557 B
TypeScript
25 lines
557 B
TypeScript
export default class AutofillField {
|
|
opid: string;
|
|
elementNumber: number;
|
|
visible: boolean;
|
|
viewable: boolean;
|
|
htmlID: string;
|
|
htmlName: string;
|
|
htmlClass: string;
|
|
'label-left': string;
|
|
'label-right': string;
|
|
'label-top': string;
|
|
'label-tag': string;
|
|
'label-aria': string;
|
|
placeholder: string;
|
|
type: string;
|
|
value: string;
|
|
disabled: boolean;
|
|
readonly: boolean;
|
|
onePasswordFieldType: string;
|
|
form: string;
|
|
autoCompleteType: string;
|
|
selectInfo: any;
|
|
maxLength: number;
|
|
}
|