15 lines
411 B
TypeScript
15 lines
411 B
TypeScript
/**
|
|
* 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';
|