typescript-class-helpers
Version:
Usefull helper to have in your typescript project
63 lines • 1.34 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.Models = void 0;
var Models;
(function (Models) {
/**
* @deprecated
*/
class ParamConfig {
paramName;
paramType;
index;
defaultType;
expireInSeconds;
}
Models.ParamConfig = ParamConfig;
/**
* @deprecated
*/
class MethodConfig {
methodName;
/**
* path is global in express app
*/
global;
/**
* override default content type
*/
contentType;
/**
* override default axiso response type
*/
responseType;
path;
descriptor;
type;
//#region @websql
requestHandler;
//#endregion
parameters = {};
}
Models.MethodConfig = MethodConfig;
/**
* @deprecated
*/
class ClassConfig {
browserTransformFn;
// @ts-ignore
singleton = void 0;
injections = [];
calculatedPath;
path;
vChildren = [];
vParent;
classReference;
className;
uniqueKey;
classNameInBrowser;
methods = {};
}
Models.ClassConfig = ClassConfig;
})(Models || (exports.Models = Models = {}));
//# sourceMappingURL=models.js.map