y0on2q (niqueue)
y0on2q (niqueue)
Pass empty array to values-applier initial value. resolved #119
"values-applier" reduce must provide initial value. If no initial value was passed, the following occurred: (node:69764) UnhandledPromiseRejectionWarning: TypeError: Reduce of empty array with no initial value at Array.reduce ()
Contributor must use a same coding convention.
The feature proposal you're describing suggests supporting to export implicit types inferred. for Example, ```ts @Controller('foo') export class FooController { @Post() foo(@Body() body: {fooRequest: string}) { return {foo: 'bar'} }...