Files
jinshen-website/app/types/common.ts
R2m1liA 33c94fb885
All checks were successful
deploy to server / build-and-deploy (push) Successful in 5m24s
style(types): directus类型标注
- 使用directus-sdk-typegen生成Directus类型
2025-10-13 16:56:28 +08:00

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;