UNPKG

furystack-core

Version:
17 lines 601 B
"use strict"; 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