mirror of
https://github.com/bitwarden/browser.git
synced 2024-11-14 10:26:19 +01:00
23 lines
702 B
TypeScript
23 lines
702 B
TypeScript
|
import { PsonoJsonExport } from "@bitwarden/common/importers/psono/psono-json-types";
|
||
|
|
||
|
export const EnvVariablesData: PsonoJsonExport = {
|
||
|
folders: [],
|
||
|
items: [
|
||
|
{
|
||
|
type: "environment_variables",
|
||
|
name: "My Environment Variables",
|
||
|
environment_variables_title: "My Environment Variables",
|
||
|
environment_variables_variables: [
|
||
|
{ key: "Key1", value: "Value1" },
|
||
|
{ key: "Key2", value: "Value2" },
|
||
|
],
|
||
|
environment_variables_notes: "Notes for environment variables",
|
||
|
create_date: "2022-12-13T19:41:02.028884Z",
|
||
|
write_date: "2022-12-13T19:41:02.028909Z",
|
||
|
callback_url: "",
|
||
|
callback_user: "",
|
||
|
callback_pass: "",
|
||
|
},
|
||
|
],
|
||
|
};
|