@tak-ps/cloudtak 13.12.0 → 13.14.1
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.
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
interface BioSensorData {
|
|
2
|
+
manufacturer: string;
|
|
3
|
+
model: string;
|
|
4
|
+
serialnumber: string;
|
|
5
|
+
batterylevel?: number;
|
|
6
|
+
callsign?: string;
|
|
7
|
+
status?: string;
|
|
8
|
+
}
|
|
9
|
+
interface BioMeasurement {
|
|
10
|
+
bioClass?: string;
|
|
11
|
+
type?: string;
|
|
12
|
+
dose: number;
|
|
13
|
+
harmful?: boolean;
|
|
14
|
+
time: string;
|
|
15
|
+
channel?: number;
|
|
16
|
+
doseTime?: number;
|
|
17
|
+
confidence?: number;
|
|
18
|
+
confirmationLevel?: string;
|
|
19
|
+
concentration?: number;
|
|
20
|
+
sampleId?: string;
|
|
21
|
+
persistency?: string;
|
|
22
|
+
}
|
|
23
|
+
interface BioSensorDetail {
|
|
24
|
+
sensor_data: BioSensorData;
|
|
25
|
+
measurement?: BioMeasurement[];
|
|
26
|
+
}
|
|
27
|
+
type __VLS_Props = {
|
|
28
|
+
biosensordetail: BioSensorDetail;
|
|
29
|
+
};
|
|
30
|
+
declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
31
|
+
declare const _default: typeof __VLS_export;
|
|
32
|
+
export default _default;
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
interface ChemSensorData {
|
|
2
|
+
manufacturer: string;
|
|
3
|
+
model: string;
|
|
4
|
+
serialnumber: string;
|
|
5
|
+
batterylevel?: number;
|
|
6
|
+
callsign?: string;
|
|
7
|
+
status?: string;
|
|
8
|
+
}
|
|
9
|
+
interface ChemDetection {
|
|
10
|
+
agent: string;
|
|
11
|
+
quantity: number;
|
|
12
|
+
quantityunits: string;
|
|
13
|
+
alarm: number;
|
|
14
|
+
class?: string;
|
|
15
|
+
confidence?: number;
|
|
16
|
+
concentration?: number;
|
|
17
|
+
massfraction?: number;
|
|
18
|
+
percent?: number;
|
|
19
|
+
id?: number;
|
|
20
|
+
time: string;
|
|
21
|
+
}
|
|
22
|
+
interface ChemSensorDetail {
|
|
23
|
+
sensor_data: ChemSensorData;
|
|
24
|
+
detection?: ChemDetection[];
|
|
25
|
+
}
|
|
26
|
+
type __VLS_Props = {
|
|
27
|
+
chemsensordetail: ChemSensorDetail;
|
|
28
|
+
};
|
|
29
|
+
declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
30
|
+
declare const _default: typeof __VLS_export;
|
|
31
|
+
export default _default;
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
interface RadSensorData {
|
|
2
|
+
manufacturer: string;
|
|
3
|
+
model: string;
|
|
4
|
+
serialnumber: string;
|
|
5
|
+
batterylevel?: number;
|
|
6
|
+
callsign?: string;
|
|
7
|
+
gammastatus: string;
|
|
8
|
+
neutronstatus: string;
|
|
9
|
+
}
|
|
10
|
+
interface RadMeasurement {
|
|
11
|
+
name: string;
|
|
12
|
+
measurement: number;
|
|
13
|
+
alarm: number;
|
|
14
|
+
nalarmstddev: number;
|
|
15
|
+
}
|
|
16
|
+
interface RadIsotope {
|
|
17
|
+
name: string;
|
|
18
|
+
type: string;
|
|
19
|
+
confidence: number;
|
|
20
|
+
}
|
|
21
|
+
interface RadSensorDetail {
|
|
22
|
+
sensor_data: RadSensorData;
|
|
23
|
+
radmeasurement?: RadMeasurement[];
|
|
24
|
+
isotope?: RadIsotope[];
|
|
25
|
+
}
|
|
26
|
+
type __VLS_Props = {
|
|
27
|
+
radsensordetail: RadSensorDetail;
|
|
28
|
+
};
|
|
29
|
+
declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
30
|
+
declare const _default: typeof __VLS_export;
|
|
31
|
+
export default _default;
|