(name, ...args)
| 104 | & ((name: string, ...args: Array<Type<any> | boolean | Validator | Converter<any>>) => MethodDecorator); |
| 105 | |
| 106 | export const get: DescriptorBuilder = (name, ...args) => _descriptor(_buildParam(name, 'get', ...args)); |
| 107 | export const query: DescriptorBuilder = (name, ...args) => _descriptor(_buildParam(name, 'get', ...args)); |
| 108 | export const post: DescriptorBuilder = (name, ...args) => _descriptor(_buildParam(name, 'post', ...args)); |
| 109 | export const route: DescriptorBuilder = (name, ...args) => _descriptor(_buildParam(name, 'route', ...args)); |
nothing calls this directly
no test coverage detected