规定数据类型

This commit is contained in:
2026-04-24 01:45:41 +08:00
parent d1943f564a
commit 35eff3faf6
86 changed files with 3809 additions and 0 deletions

14
shared/index.ts Normal file
View File

@@ -0,0 +1,14 @@
/**
* Shared Module
* 前后端共享的类型定义、验证 schemas 和工具函数
*/
// 类型定义
export * as STTypes from './types/sillytavern.types';
export * as InternalTypes from './types/internal.types';
export * from './types';
// Zod Schemas
export * as STSchemas from './schemas/sillytavern.schemas';
export * as InternalSchemas from './schemas/internal.schemas';
export * from './schemas';