@voiceflow/base-types
Version:
Voiceflow base project types
13 lines (12 loc) • 466 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.ButtonsLayout = exports.ButtonType = void 0;
var ButtonType;
(function (ButtonType) {
ButtonType["INTENT"] = "INTENT";
})(ButtonType || (exports.ButtonType = ButtonType = {}));
var ButtonsLayout;
(function (ButtonsLayout) {
ButtonsLayout["STACKED"] = "stacked";
ButtonsLayout["CAROUSEL"] = "carousel";
})(ButtonsLayout || (exports.ButtonsLayout = ButtonsLayout = {}));