You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
258 B
15 lines
258 B
6 years ago
|
import { AnalyticUnitId } from './analytic_unit';
|
||
|
|
||
6 years ago
|
export enum DetectionStatus {
|
||
6 years ago
|
READY = 'READY',
|
||
|
RUNNING = 'RUNNING',
|
||
|
FAILED = 'FAILED'
|
||
|
};
|
||
|
|
||
6 years ago
|
export type DetectionSpan = {
|
||
6 years ago
|
id: AnalyticUnitId,
|
||
6 years ago
|
status: DetectionStatus,
|
||
6 years ago
|
from: number,
|
||
|
to: number
|
||
|
};
|