index.ts 462 B

12345678910111213141516171819
  1. export * from './entities';
  2. export * from './services';
  3. export * from './routes';
  4. // 避免命名冲突,明确导出schemas中的类型
  5. export {
  6. ChannelSchema,
  7. CreateChannelSchema,
  8. UpdateChannelSchema,
  9. DeleteChannelSchema,
  10. PaginationQuerySchema,
  11. SearchChannelQuerySchema,
  12. type Channel as ChannelType,
  13. type CreateChannelDto,
  14. type UpdateChannelDto,
  15. type DeleteChannelDto,
  16. type PaginationQuery,
  17. type SearchChannelQuery
  18. } from './schemas';