@zuu/owl
Version:
Zuu's Experimental GraphQL Implementation
13 lines • 739 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
const getMetadataStorage_1 = require("../metadata/getMetadataStorage");
const params_1 = require("../helpers/params");
const decorators_1 = require("../helpers/decorators");
function Args(paramTypeFnOrOptions, maybeOptions) {
const { options, returnTypeFunc } = decorators_1.getTypeDecoratorParams(paramTypeFnOrOptions, maybeOptions);
return (prototype, propertyKey, parameterIndex) => {
getMetadataStorage_1.getMetadataStorage().collectHandlerParamMetadata(Object.assign({ kind: "args" }, params_1.getParamInfo({ prototype, propertyKey, parameterIndex, returnTypeFunc, options })));
};
}
exports.Args = Args;
//# sourceMappingURL=Args.js.map