ls-deno/types.ts

6 lines
78 B
TypeScript
Raw Normal View History

2022-10-07 23:22:35 -05:00
export interface Note {
id: string;
createdAt: Date;
content: string;
}