From df5af968ef03ae3e9e45a6b80938c259a13dd586 Mon Sep 17 00:00:00 2001 From: Steven Huss-Lederman Date: Fri, 29 Sep 2023 20:39:20 -0500 Subject: [PATCH] use extend in layered interface --- src/client/app/types/readings.ts | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/client/app/types/readings.ts b/src/client/app/types/readings.ts index 19b8d0202..37d791f69 100644 --- a/src/client/app/types/readings.ts +++ b/src/client/app/types/readings.ts @@ -21,10 +21,7 @@ export interface RawReadings { e: string } -export interface LineReading { - reading: number; - startTimestamp: number; - endTimestamp: number; +export interface LineReading extends BarReading{ min: number; max: number; }