diff src/app/visualisations/waveform/waves-ui-piper.d.ts @ 354:a9ce5516c17d

Introduce an abstract base class for components using waves-ui.
author Lucas Thompson <dev@lucas.im>
date Fri, 26 May 2017 18:17:31 +0100
parents 82d476b976e0
children
line wrap: on
line diff
--- a/src/app/visualisations/waveform/waves-ui-piper.d.ts	Fri May 26 13:10:18 2017 +0100
+++ b/src/app/visualisations/waveform/waves-ui-piper.d.ts	Fri May 26 18:17:31 2017 +0100
@@ -38,6 +38,7 @@
   stretchRatio: number;
   yDomain: number[];
   opacity: number;
+  timeContext: any; // TODO
   readonly timeToPixel: () => (time: number) => number;
   readonly valueToPixel: () => (value: number) => number;
   readonly items: Element[];
@@ -95,6 +96,7 @@
 }
 
 type Timeline = any;
+type Track = any; // TODO
 
 interface Core {
   Layer: LayerConstructor;