UNPKG

@allgemein/schema-api

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