From db1e07060cc364fd8c11a31fcf4c0b97a64d0c76 Mon Sep 17 00:00:00 2001 From: Julien Calixte Date: Sun, 7 Jun 2026 11:25:44 +0200 Subject: [PATCH] feat(note): add optional content field to Note type --- src/data/note.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/data/note.ts b/src/data/note.ts index 49bb76e..27836f2 100644 --- a/src/data/note.ts +++ b/src/data/note.ts @@ -5,5 +5,6 @@ export type Note = { publishedAt: string; createdAt: string; discoverable?: boolean; - language?: string + language?: string; + content?: string; };