feat(note): add optional content field to Note type

This commit is contained in:
Julien Calixte
2026-06-07 11:25:44 +02:00
parent 6163092d27
commit db1e07060c

View File

@@ -5,5 +5,6 @@ export type Note = {
publishedAt: string; publishedAt: string;
createdAt: string; createdAt: string;
discoverable?: boolean; discoverable?: boolean;
language?: string language?: string;
content?: string;
}; };