blob: 6d8b3879aa8ae1e0fe3186fb8beed951ebc85c02 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
export class HighlightType {
static NONE: string = 'none';
static DURATION: string = 'duration';
static ROWS: string = 'rows';
static COST: string = 'cost';
}
export enum EstimateDirection {
over,
under
}
|