all files / models/ enums.js

100% Statements 36/36
100% Branches 6/6
100% Functions 4/4
100% Lines 36/36
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42            
define(["require", "exports"], function (require, exports) {
    "use strict";
    Object.defineProperty(exports, "__esModule", { value: true });
    var BlockType;
    (function (BlockType) {
        BlockType["Paragraph"] = "Paragraph";
        BlockType["Heading"] = "Heading";
        BlockType["Checklist"] = "Checklist";
        BlockType["BulletList"] = "BulletList";
        BlockType["NumberedList"] = "NumberedList";
        BlockType["Code"] = "Code";
        BlockType["Quote"] = "Quote";
        BlockType["Callout"] = "Callout";
        BlockType["Divider"] = "Divider";
        BlockType["CollapsibleParagraph"] = "CollapsibleParagraph";
        BlockType["CollapsibleHeading"] = "CollapsibleHeading";
        BlockType["Image"] = "Image";
        BlockType["Table"] = "Table";
        BlockType["Template"] = "Template";
    })(BlockType = exports.BlockType || (exports.BlockType = {}));
    var ContentType;
    (function (ContentType) {
        ContentType["Text"] = "Text";
        ContentType["Link"] = "Link";
        ContentType["Mention"] = "Mention";
        ContentType["Label"] = "Label";
    })(ContentType = exports.ContentType || (exports.ContentType = {}));
    var CommandName;
    (function (CommandName) {
        CommandName["Bold"] = "Bold";
        CommandName["Italic"] = "Italic";
        CommandName["Underline"] = "Underline";
        CommandName["Strikethrough"] = "Strikethrough";
        CommandName["Color"] = "Color";
        CommandName["BackgroundColor"] = "BackgroundColor";
        CommandName["Superscript"] = "Superscript";
        CommandName["Subscript"] = "Subscript";
        CommandName["Uppercase"] = "Uppercase";
        CommandName["Lowercase"] = "Lowercase";
    })(CommandName = exports.CommandName || (exports.CommandName = {}));
});