sparkscript
Version:
DiamondFire for Javascript.
15 lines • 440 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
const components_1 = require("../core/components");
class Control extends components_1.ActionBlock {
/**
* Control.
* @param action Action to perform.
* @param args Arguments to pass.
*/
constructor(action, ...args) {
super("control", action, args, false);
}
}
exports.default = Control;
//# sourceMappingURL=Control.js.map