1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-18 17:23:37 +00:00

move autofill models

This commit is contained in:
Kyle Spearrin
2018-01-11 15:59:07 -05:00
parent 12ad4f6df8
commit f0189b4f71
6 changed files with 4 additions and 4 deletions

View File

@@ -0,0 +1,13 @@
import AutofillField from './autofillField';
import AutofillForm from './autofillForm';
export default class AutofillPageDetails {
documentUUID: string;
title: string;
url: string;
documentUrl: string;
tabUrl: string;
forms: { [id: string]: AutofillForm; };
fields: AutofillField[];
collectedTimestamp: number;
}