8 lines
166 B
TypeScript
8 lines
166 B
TypeScript
/** 云集合 `favorites` 文档(§3.6) */
|
||
export interface FavoriteRecord {
|
||
_id: string;
|
||
userId: string;
|
||
worksheetId: string;
|
||
createdAt: Date;
|
||
}
|