Files
DianZhanDemo/shared/dist/index.js
ch197511161 aaaf08e8f3 init6
2025-12-11 02:09:07 +08:00

11 lines
449 B
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/**
* Shared 包主导出文件
* 导出所有类型定义、schemas 和工具函数
*/
// 导出类型定义
export * from './types/index.js';
// 导出 schemas只导出 schema 对象,不导出推断的类型)
export { BaseUserSchema, CreateUserSchema, UpdateUserSchema, UserQuerySchema, EmailQuerySchema, UserIdSchema, } from './schemas/index.js';
// 导出工具函数
export * from './utils/index.js';
//# sourceMappingURL=index.js.map