book-min/types/note.d.ts

10 lines
162 B
TypeScript
Raw Normal View History

2024-12-18 16:15:08 +08:00
interface Note {
id: string;
bookId: string;
title: string;
content: string;
tags: string[];
page?: number;
createTime: Date;
updateTime: Date;
}