Add data layer
All checks were successful
FarmMaps.Develop/FarmMapsLib/pipeline/head This commit looks good
All checks were successful
FarmMaps.Develop/FarmMapsLib/pipeline/head This commit looks good
This commit is contained in:
7
projects/common/src/fm/models/data.layer.ts
Normal file
7
projects/common/src/fm/models/data.layer.ts
Normal file
@@ -0,0 +1,7 @@
|
||||
export interface IDataLayer {
|
||||
name: string,
|
||||
unit: string,
|
||||
index: number,
|
||||
indexKey?: string,
|
||||
scale: number,
|
||||
}
|
5
projects/common/src/fm/models/json-line.ts
Normal file
5
projects/common/src/fm/models/json-line.ts
Normal file
@@ -0,0 +1,5 @@
|
||||
export interface IJsonline {
|
||||
time: string;
|
||||
type: string;
|
||||
data: any;
|
||||
}
|
5
projects/common/src/fm/models/senml-item.ts
Normal file
5
projects/common/src/fm/models/senml-item.ts
Normal file
@@ -0,0 +1,5 @@
|
||||
export interface ISenMLItem {
|
||||
u?: string;
|
||||
v?: string;
|
||||
n?: string;
|
||||
}
|
Reference in New Issue
Block a user