mirror of
https://github.com/bitwarden/browser.git
synced 2024-12-02 13:23:29 +01:00
13 lines
287 B
TypeScript
13 lines
287 B
TypeScript
export default class AutofillScript {
|
|
script: string[][] = [];
|
|
documentUUID: any = {};
|
|
properties: any = {};
|
|
options: any = {};
|
|
metadata: any = {};
|
|
autosubmit: any = null;
|
|
|
|
constructor(documentUUID: string) {
|
|
this.documentUUID = documentUUID;
|
|
}
|
|
}
|