Files
remanso-jetstream/src/data/note.ts
2026-06-07 11:25:44 +02:00

11 lines
183 B
TypeScript

export type Note = {
did: string;
rkey: string;
title: string;
publishedAt: string;
createdAt: string;
discoverable?: boolean;
language?: string;
content?: string;
};