@dronedeploy/rocos-js-sdk 3.0.1-alpha.26 → 3.0.1-alpha.27
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.
|
@@ -24,15 +24,13 @@ export interface Target {
|
|
|
24
24
|
* Rotation of the target in the 3D space
|
|
25
25
|
*/
|
|
26
26
|
rotation: Quaternion;
|
|
27
|
-
}
|
|
28
|
-
type TargetMediaItem = {
|
|
29
|
-
id: string;
|
|
30
|
-
data: Record<string, string>;
|
|
31
|
-
};
|
|
32
|
-
export interface TargetWithMedia extends Target {
|
|
33
27
|
/**
|
|
34
28
|
* Media associated with the target (images)
|
|
35
29
|
*/
|
|
36
|
-
media
|
|
30
|
+
media?: TargetMedia[];
|
|
37
31
|
}
|
|
32
|
+
type TargetMedia = {
|
|
33
|
+
id: string;
|
|
34
|
+
data: Record<string, string>;
|
|
35
|
+
};
|
|
38
36
|
export {};
|
|
@@ -24,15 +24,13 @@ export interface Target {
|
|
|
24
24
|
* Rotation of the target in the 3D space
|
|
25
25
|
*/
|
|
26
26
|
rotation: Quaternion;
|
|
27
|
-
}
|
|
28
|
-
type TargetMediaItem = {
|
|
29
|
-
id: string;
|
|
30
|
-
data: Record<string, string>;
|
|
31
|
-
};
|
|
32
|
-
export interface TargetWithMedia extends Target {
|
|
33
27
|
/**
|
|
34
28
|
* Media associated with the target (images)
|
|
35
29
|
*/
|
|
36
|
-
media
|
|
30
|
+
media?: TargetMedia[];
|
|
37
31
|
}
|
|
32
|
+
type TargetMedia = {
|
|
33
|
+
id: string;
|
|
34
|
+
data: Record<string, string>;
|
|
35
|
+
};
|
|
38
36
|
export {};
|