Kiryl Yermakou
Kiryl Yermakou
given: ```yml components: schemas: Category: x-swagger-router-model: io.swagger.petstore.model.Category properties: id: type: string name: type: string example: Dogs subcategories: type: array, items: $ref: '#/components/schemas/Category' xml: name: category type: object ``` after generation:...
by adding the line in main.ts: ```typescript app.use('/trpc/*', trpcServer({ router: router, })) ``` Got such an error for `router` prop: ``` Type 'CreateRouterInner' is not assignable to type 'AnyRouter'. The...