concordialang-ui-core
Version:
The Concordia UI Prototyper core
14 lines (13 loc) • 335 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
/**
* This class must be used by plugins to generate UI elements.
*/
var Widget = /** @class */ (function () {
function Widget(props, name) {
this.props = props;
this.name = name;
}
return Widget;
}());
exports.Widget = Widget;