aboutsummaryrefslogtreecommitdiff
path: root/app/enums.ts
blob: bcbd258e8e7cfc112e332618e01c0938c3d6da00 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
export class HighlightType {
    static NONE: string = 'none';
    static DURATION: string = 'duration';
    static ROWS: string = 'rows';
    static COST: string = 'cost';
}

export enum EstimateDirection {
    over,
    under
}

export class ViewMode {
    static FULL: string = 'full';
    static COMPACT: string = 'compact';
    static DOT: string = 'dot';
}