11 lines
183 B
TypeScript
11 lines
183 B
TypeScript
export type Note = {
|
|
did: string;
|
|
rkey: string;
|
|
title: string;
|
|
publishedAt: string;
|
|
createdAt: string;
|
|
discoverable?: boolean;
|
|
language?: string;
|
|
content?: string;
|
|
};
|