Repository URL to install this package:
|
Version:
2.1.1 ▾
|
"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
/**
* @note - the inputs were here, but the import order was causing circular issues
* in particular, in TextBox (which should be rewritten)
*/
exports.inputChains = [];
function register(plugin) {
if (Array.isArray(plugin)) {
plugin.forEach(register);
} else {
exports.inputChains.push(plugin);
}
}
exports.register = register; //# sourceMappingURL=config.js.map