define(["require", "exports"], function (require, exports) {
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
var RenderType;
(function (RenderType) {
RenderType[RenderType["Toolbar"] = 0] = "Toolbar";
RenderType[RenderType["Content"] = 1] = "Content";
RenderType[RenderType["Popup"] = 2] = "Popup";
RenderType[RenderType["LinkToolbar"] = 3] = "LinkToolbar";
RenderType[RenderType["TextToolbar"] = 4] = "TextToolbar";
RenderType[RenderType["ImageToolbar"] = 5] = "ImageToolbar";
RenderType[RenderType["AudioToolbar"] = 6] = "AudioToolbar";
RenderType[RenderType["VideoToolbar"] = 7] = "VideoToolbar";
RenderType[RenderType["InlineToolbar"] = 8] = "InlineToolbar";
RenderType[RenderType["TableToolbar"] = 9] = "TableToolbar";
})(RenderType = exports.RenderType || (exports.RenderType = {}));
var ToolbarType;
(function (ToolbarType) {
ToolbarType["Expand"] = "Expand";
ToolbarType["MultiRow"] = "MultiRow";
ToolbarType["Scrollable"] = "Scrollable";
})(ToolbarType = exports.ToolbarType || (exports.ToolbarType = {}));
var DialogType;
(function (DialogType) {
DialogType["InsertLink"] = "InsertLink";
DialogType["InsertImage"] = "InsertImage";
DialogType["InsertAudio"] = "InsertAudio";
DialogType["InsertVideo"] = "InsertVideo";
DialogType["InsertTable"] = "InsertTable";
})(DialogType = exports.DialogType || (exports.DialogType = {}));
var ImageInputSource;
(function (ImageInputSource) {
ImageInputSource["Uploaded"] = "Uploaded";
ImageInputSource["Dropped"] = "Dropped";
ImageInputSource["Pasted"] = "Pasted";
})(ImageInputSource = exports.ImageInputSource || (exports.ImageInputSource = {}));
});
|