@allgemein/schema-api
Version:
Library for schema api
16 lines • 448 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.Binding = void 0;
class Binding {
static create(sType, sName, tType, tName) {
let b = new Binding();
b.bindingType = [sType, tType].join('_');
b.sourceType = sType;
b.targetType = tType;
b.source = sName;
b.target = tName;
return b;
}
}
exports.Binding = Binding;
//# sourceMappingURL=Binding.js.map