bitwarden-estensione-browser/src/models/autofillField.ts

25 lines
557 B
TypeScript
Raw Normal View History

2017-11-06 20:16:06 +01:00
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;
2017-11-06 20:16:06 +01:00
'label-tag': string;
2018-11-25 04:54:30 +01:00
'label-aria': string;
2017-11-06 20:16:06 +01:00
placeholder: string;
type: string;
value: string;
disabled: boolean;
readonly: boolean;
onePasswordFieldType: string;
form: string;
autoCompleteType: string;
2017-11-24 21:49:13 +01:00
selectInfo: any;
2019-01-15 04:45:12 +01:00
maxLength: number;
2017-11-06 20:16:06 +01:00
}