style(types): directus类型标注
All checks were successful
deploy to server / build-and-deploy (push) Successful in 5m24s

- 使用directus-sdk-typegen生成Directus类型
This commit is contained in:
2025-10-13 16:56:28 +08:00
parent e05f248b66
commit 33c94fb885
3 changed files with 843 additions and 0 deletions

7
app/types/common.ts Normal file
View File

@ -0,0 +1,7 @@
export type JsonPrimitive = string | number | boolean | null;
export type JsonArray = JsonValue[];
export type JsonObject = { [key: string]: JsonValue };
export type JsonValue = JsonPrimitive | JsonArray | JsonObject;