mirror of
https://github.com/bitwarden/browser.git
synced 2024-11-11 10:10:25 +01:00
14 lines
318 B
TypeScript
14 lines
318 B
TypeScript
|
import { PasskyJsonExport } from "@bitwarden/common/importers/passky/passky-json-types";
|
||
|
|
||
|
export const testData: PasskyJsonExport = {
|
||
|
encrypted: false,
|
||
|
passwords: [
|
||
|
{
|
||
|
website: "https://bitwarden.com/",
|
||
|
username: "testUser",
|
||
|
password: "testPassword",
|
||
|
message: "my notes",
|
||
|
},
|
||
|
],
|
||
|
};
|