9 lines
218 B
TypeScript
9 lines
218 B
TypeScript
/** 云集合 `download_logs` 文档(§3.7) */
|
||
export interface DownloadLogRecord {
|
||
_id: string;
|
||
userId: string;
|
||
worksheetId: string;
|
||
params?: Record<string, unknown> | null;
|
||
createdAt: Date;
|
||
}
|