tg-commander
Version:
<p align="center"><img src="https://github.com/stone-jin/tg-commander/raw/master/assets/logo.png" alt="tg-commander logo" width="150px" height="150px"></p>
14 lines (13 loc) • 483 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
require("reflect-metadata");
var FunctionReflectUtils = /** @class */ (function () {
function FunctionReflectUtils() {
}
FunctionReflectUtils.getFunctionTypes = function (constructor) {
var paramsTypes = Reflect.getMetadata("design:paramtypes", constructor);
return paramsTypes;
};
return FunctionReflectUtils;
}());
exports.FunctionReflectUtils = FunctionReflectUtils;