mirror of
https://github.com/bitwarden/browser
synced 2025-01-11 18:07:12 +01:00
8c8d4b3e3e
Create types for passky export format Add test files Write tests for passky-json-importer Write importer for passky export Register 'passkyjson' with `importOptions` Import/register passky-json-importer with import.service Add instructions on how to export from Passky
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",
|
|
},
|
|
],
|
|
};
|