ls-deno/types.ts
2022-10-07 23:22:35 -05:00

6 lines
78 B
TypeScript

export interface Note {
id: string;
createdAt: Date;
content: string;
}