All checks were successful
deploy to server / build-and-deploy (push) Successful in 5m4s
- 添加/download/documentID路由用于文档下载 - server端添加文档元数据获取与下载API - 将app中的types移至shared,与server共享
8 lines
221 B
TypeScript
8 lines
221 B
TypeScript
export type JsonPrimitive = string | number | boolean | null;
|
|
|
|
export type JsonArray = JsonValue[];
|
|
|
|
export type JsonObject = { [key: string]: JsonValue };
|
|
|
|
export type JsonValue = JsonPrimitive | JsonArray | JsonObject;
|