From 5c382f6dc245ce444d3e5df8e360ba991ebcab5a Mon Sep 17 00:00:00 2001 From: Alex P Date: Thu, 12 Jul 2018 13:41:17 -0700 Subject: [PATCH] Bring back TimePeriod type --- ui/src/types/histogram.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/ui/src/types/histogram.ts b/ui/src/types/histogram.ts index 1fb119785..5870bdd41 100644 --- a/ui/src/types/histogram.ts +++ b/ui/src/types/histogram.ts @@ -18,6 +18,11 @@ export interface Margins { left: number } +export interface TimePeriod { + start: UnixTime + end: UnixTime +} + export interface HoverData { data: HistogramData x: number