book-min/types/note.d.ts

10 lines
162 B
TypeScript

interface Note {
id: string;
bookId: string;
title: string;
content: string;
tags: string[];
page?: number;
createTime: Date;
updateTime: Date;
}