"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
var Binding = (function () {
function Binding(yamlDoc) {
this.intentName = yamlDoc.intent;
this.action = yamlDoc.action.replace('{%', '').replace('%}', '');
}
return Binding;
}());
exports.Binding = Binding;