furystack-core
Version:
FuryStack framework, Core package
17 lines • 601 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
/**
* This class extracts a custom logics of a specific scope having their own Custom Action(s)
*/
class CustomAction {
constructor(name, requestType, bodyType, returnsType) {
this.name = name;
this.requestType = requestType;
this.bodyType = bodyType;
this.returnsType = returnsType;
this.bodyTypeName = this.bodyType.name;
this.returnTypeName = this.returnsType.name;
}
}
exports.CustomAction = CustomAction;
//# sourceMappingURL=CustomAction.js.map