Type of OnUndefined decorator
Defines what to do on undefined return value
undefined
@Controller() export class TestController { @Get('/') @OnUndefined(404) index() { } @Get('/test') test() { return Result([ new OnUndefined(new NotFoundError()) ]); } }
Generated using TypeDoc
Type of OnUndefined decorator