19 lines
457 B
TypeScript
19 lines
457 B
TypeScript
import { PsonoJsonExport } from "../../../src/importers/psono/psono-json-types";
|
|
|
|
export const NotesData: PsonoJsonExport = {
|
|
folders: [],
|
|
items: [
|
|
{
|
|
type: "note",
|
|
name: "My Note",
|
|
note_title: "My Note",
|
|
note_notes: "Notes for my Note",
|
|
create_date: "2022-12-13T19:41:18.770714Z",
|
|
write_date: "2022-12-13T19:41:18.770738Z",
|
|
callback_url: "",
|
|
callback_user: "",
|
|
callback_pass: "",
|
|
},
|
|
],
|
|
};
|