All files / src/utils Enums.ts

100% Statements 32/32
100% Branches 10/10
100% Functions 5/5
100% Lines 32/32

Press n or j to go to the next uncovered block, b, p or k for the previous block.

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 405x 5x 5x 5x 5x 5x   5x 5x 5x 5x 5x 5x 5x 5x     5x 5x 5x 5x 5x 5x 5x 5x 5x   5x 5x 5x 5x 5x 5x     5x 5x 5x    
export enum FramePropertyNames {
    FRAME_X = 'frameX',
    FRAME_Y = 'frameY',
    WIDTH = 'width',
    HEIGHT = 'height',
    FRAME_ROTATION = 'frameRotation',
}
export enum LayoutPropertyNames {
    LAYOUT_HEIGHT = 'layoutHeight',
    LAYOUT_WIDTH = 'layoutWidth',
    BLEED_TOP = 'bleedTop',
    BLEED_BOTTOM = 'bleedBottom',
    BLEED_LEFT = 'bleedLeft',
    BLEED_RIGHT = 'bleedRight',
    BLEED_VALUES_COMBINED = 'areBleedValuesCombined',
}
 
export enum ToolType {
    SELECT = 'select',
    ZOOM = 'zoom',
    HAND = 'hand',
    IMAGE_FRAME = 'imageFrame',
    TEXT_FRAME = 'textFrame',
    SHAPE_RECT = 'rect',
    SHAPE_ELLIPSE = 'ellipse',
    SHAPE_POLYGON = 'polygon',
}
export enum DownloadFormats {
    MP4 = 'mp4',
    GIF = 'gif',
    PNG = 'png',
    JPG = 'jpg',
    PDF = 'pdf',
}
 
export enum EnvironmentType {
    SANDBOX = 'sandbox',
    PRODUCTION = 'online',
}