(cb?: IParseHandler, data?: any)
| 23 | * @Throws InvalidArgumentException |
| 24 | */ |
| 25 | export function QueryParam(cb?: IParseHandler, data?: any) |
| 26 | : (target: any, propertyKey: string, parameterIndex: number) => void { |
| 27 | return AttributeMetadata.parse( |
| 28 | DataUtility.isUndefined(cb) ? toValue : cb, data, true); |
| 29 | } |
| 30 | |
| 31 | /** |
| 32 | * Decorate on Action Parameters to transform values to Number |
no outgoing calls