Files
jinshen-website/shared/types/file.ts
R2m1liA 4e7131b291
All checks were successful
deploy to server / build-and-deploy (push) Successful in 5m4s
feat: 添加download路由用于展示文档信息
- 添加/download/documentID路由用于文档下载
- server端添加文档元数据获取与下载API
- 将app中的types移至shared,与server共享
2025-10-27 17:16:51 +08:00

13 lines
226 B
TypeScript

export interface FileMeta {
id: string;
title: string;
filename_download: string;
type: string;
filesize: number;
width?: number;
height?: number;
uploaded_on?: string;
url: string;
previewable: boolean;
}