10 lines
162 B
TypeScript
10 lines
162 B
TypeScript
|
interface Note {
|
||
|
id: string;
|
||
|
bookId: string;
|
||
|
title: string;
|
||
|
content: string;
|
||
|
tags: string[];
|
||
|
page?: number;
|
||
|
createTime: Date;
|
||
|
updateTime: Date;
|
||
|
}
|