@record-evolution/widget-mapbox 1.4.11 → 1.4.12

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,28 +0,0 @@
1
- export interface Settings {
2
- title: string;
3
- subTitle: string;
4
- style: string;
5
- showLegend: boolean;
6
- follow: boolean;
7
- }
8
- export interface Point {
9
- lon: number;
10
- lat: number;
11
- alt: number;
12
- value: number;
13
- pivot: string;
14
- }
15
- export interface Dataseries {
16
- label: string;
17
- type: string;
18
- order: number;
19
- latestValues: number;
20
- config: any;
21
- color: string;
22
- data: Point[];
23
- derivedColor: string;
24
- }
25
- export interface InputData {
26
- settings?: Settings;
27
- dataseries: Dataseries[];
28
- }
package/src/types.ts DELETED
@@ -1,33 +0,0 @@
1
-
2
- export interface Settings {
3
- title: string
4
- subTitle: string
5
- style: string
6
- showLegend: boolean
7
- follow: boolean
8
- }
9
-
10
- export interface Point {
11
- lon: number
12
- lat: number
13
- alt: number
14
- value: number
15
- pivot: string
16
- }
17
-
18
- export interface Dataseries {
19
- label: string
20
- type: string
21
- order: number
22
- latestValues: number
23
- config: any
24
- color: string
25
- data: Point[]
26
- // non inputs
27
- derivedColor: string
28
- }
29
-
30
- export interface InputData {
31
- settings?: Settings
32
- dataseries: Dataseries[]
33
- }