Пробовал:
@Post()
async create(@Body() body: CreateStreamDto): Promise<typeof Stream> {
return { id: '12', connectionUrl: 'stuff' }
}
Но там написано:
ype '{ id: string; connectionUrl: string; }' is not assignable to type 'typeof Stream'.
Object literal may only specify known properties, and 'id' does not exist in type 'typeof Stream'.