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

21 lines
456 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;
labelRight: string;
labelLeft: string;
'label-tag': string;
placeholder: string;
type: string;
value: string;
disabled: boolean;
readonly: boolean;
onePasswordFieldType: string;
form: string;
autoCompleteType: string;
}