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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

14 lines
329 B
TypeScript
Raw Normal View History

2017-11-06 20:16:06 +01:00
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;
}