blob: d7784d8bf55f109ce785c1ae4caddb5493422f37 (
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
}
|