Code coverage report for src/consts.js

Statements: 100% (24 / 24)      Branches: 100% (6 / 6)      Functions: 100% (3 / 3)      Lines: 100% (24 / 24)      Ignored: none     

All files » src/ » consts.js
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 371 1 1 1 1   1 1 1 1 1 1 1 1 1 1 1   1 1 1 1 1 1   1         1            
var Table;
(function (Table) {
    Table.SUMMARY = 'summary';
    Table.SOURCE = 'source';
    Table.STACKED = 'stacked';
})(Table = exports.Table || (exports.Table = {}));
var Enctype;
(function (Enctype) {
    Enctype.X = 'x';
    Enctype.Y = 'y';
    Enctype.ROW = 'row';
    Enctype.COL = 'col';
    Enctype.SHAPE = 'shape';
    Enctype.SIZE = 'size';
    Enctype.COLOR = 'color';
    Enctype.TEXT = 'text';
    Enctype.DETAIL = 'detail';
})(Enctype = exports.Enctype || (exports.Enctype = {}));
var Type;
(function (Type) {
    Type.O = 'O';
    Type.Q = 'Q';
    Type.N = 'N';
    Type.T = 'T';
})(Type = exports.Type || (exports.Type = {}));
exports.ENCODING_TYPES = [
    Enctype.X, Enctype.Y,
    Enctype.ROW, Enctype.COL,
    Enctype.SIZE, Enctype.SHAPE, Enctype.COLOR, Enctype.TEXT, Enctype.DETAIL
];
exports.Shorthand = {
    Delim: '|',
    Assign: '=',
    Type: ',',
    Func: '_'
};
//# sourceMappingURL=consts.js.map