@duet3d/objectmodel 3.5.0-b6 → 3.5.0-b8
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.
- package/dist/ObjectModel.d.ts +0 -2
- package/dist/ObjectModel.js +0 -2
- package/dist/index.d.ts +0 -1
- package/dist/index.js +0 -1
- package/dist/move/index.d.ts +1 -0
- package/dist/move/index.js +1 -0
- package/package.json +1 -1
package/dist/ObjectModel.d.ts
CHANGED
|
@@ -13,7 +13,6 @@ import Message from "./messages";
|
|
|
13
13
|
import Move from "./move";
|
|
14
14
|
import Network from "./network";
|
|
15
15
|
import Plugin from "./plugins";
|
|
16
|
-
import Scanner from "./scanner";
|
|
17
16
|
import Sensors from "./sensors";
|
|
18
17
|
import Spindle from "./spindles";
|
|
19
18
|
import State from "./state";
|
|
@@ -37,7 +36,6 @@ export declare class ObjectModel extends ModelObject {
|
|
|
37
36
|
readonly move: Move;
|
|
38
37
|
readonly network: Network;
|
|
39
38
|
readonly plugins: ModelDictionary<Plugin>;
|
|
40
|
-
readonly scanner: Scanner;
|
|
41
39
|
readonly sensors: Sensors;
|
|
42
40
|
readonly spindles: ModelCollection<Spindle | null>;
|
|
43
41
|
readonly state: State;
|
package/dist/ObjectModel.js
CHANGED
|
@@ -16,7 +16,6 @@ const messages_1 = require("./messages");
|
|
|
16
16
|
const move_1 = require("./move");
|
|
17
17
|
const network_1 = require("./network");
|
|
18
18
|
const plugins_1 = require("./plugins");
|
|
19
|
-
const scanner_1 = require("./scanner");
|
|
20
19
|
const sensors_1 = require("./sensors");
|
|
21
20
|
const spindles_1 = require("./spindles");
|
|
22
21
|
const state_1 = require("./state");
|
|
@@ -42,7 +41,6 @@ class ObjectModel extends ModelObject_1.default {
|
|
|
42
41
|
this.move = new move_1.default();
|
|
43
42
|
this.network = new network_1.default();
|
|
44
43
|
this.plugins = new ModelDictionary_1.default(true, plugins_1.default);
|
|
45
|
-
this.scanner = new scanner_1.default();
|
|
46
44
|
this.sensors = new sensors_1.default();
|
|
47
45
|
this.spindles = new ModelCollection_1.default(spindles_1.default);
|
|
48
46
|
this.state = new state_1.default();
|
package/dist/index.d.ts
CHANGED
package/dist/index.js
CHANGED
|
@@ -31,7 +31,6 @@ __exportStar(require("./messages"), exports);
|
|
|
31
31
|
__exportStar(require("./move"), exports);
|
|
32
32
|
__exportStar(require("./network"), exports);
|
|
33
33
|
__exportStar(require("./plugins"), exports);
|
|
34
|
-
__exportStar(require("./scanner"), exports);
|
|
35
34
|
__exportStar(require("./sensors"), exports);
|
|
36
35
|
__exportStar(require("./spindles"), exports);
|
|
37
36
|
__exportStar(require("./state"), exports);
|
package/dist/move/index.d.ts
CHANGED
package/dist/move/index.js
CHANGED