node-opcua-nodeset-cnc 2.64.0 → 2.64.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.
Files changed (41) hide show
  1. package/dist/dt_cnc_position.d.ts +19 -19
  2. package/dist/dt_cnc_position.js +2 -2
  3. package/dist/enum_cnc_axis_status.d.ts +24 -24
  4. package/dist/enum_cnc_axis_status.js +29 -29
  5. package/dist/enum_cnc_channel_program_status.d.ts +32 -32
  6. package/dist/enum_cnc_channel_program_status.js +37 -37
  7. package/dist/enum_cnc_channel_status.d.ts +24 -24
  8. package/dist/enum_cnc_channel_status.js +29 -29
  9. package/dist/enum_cnc_operation_mode.d.ts +15 -15
  10. package/dist/enum_cnc_operation_mode.js +20 -20
  11. package/dist/enum_cnc_spindle_status.d.ts +32 -32
  12. package/dist/enum_cnc_spindle_status.js +37 -37
  13. package/dist/enum_cnc_spindle_turn_direction.d.ts +24 -24
  14. package/dist/enum_cnc_spindle_turn_direction.js +29 -29
  15. package/dist/index.d.ts +19 -19
  16. package/dist/index.js +31 -31
  17. package/dist/ua_cnc_alarm.d.ts +36 -36
  18. package/dist/ua_cnc_alarm.js +2 -2
  19. package/dist/ua_cnc_axis.d.ts +61 -61
  20. package/dist/ua_cnc_axis.js +2 -2
  21. package/dist/ua_cnc_axis_list.d.ts +15 -15
  22. package/dist/ua_cnc_axis_list.js +2 -2
  23. package/dist/ua_cnc_channel.d.ts +0 -0
  24. package/dist/ua_cnc_channel.js +2 -2
  25. package/dist/ua_cnc_channel_list.d.ts +15 -15
  26. package/dist/ua_cnc_channel_list.js +2 -2
  27. package/dist/ua_cnc_component.d.ts +16 -16
  28. package/dist/ua_cnc_component.js +2 -2
  29. package/dist/ua_cnc_drive.d.ts +0 -0
  30. package/dist/ua_cnc_drive.js +2 -2
  31. package/dist/ua_cnc_interface.d.ts +60 -60
  32. package/dist/ua_cnc_interface.js +2 -2
  33. package/dist/ua_cnc_message.d.ts +15 -15
  34. package/dist/ua_cnc_message.js +2 -2
  35. package/dist/ua_cnc_position_variable.d.ts +39 -39
  36. package/dist/ua_cnc_position_variable.js +2 -2
  37. package/dist/ua_cnc_spindle.d.ts +80 -80
  38. package/dist/ua_cnc_spindle.js +2 -2
  39. package/dist/ua_cnc_spindle_list.d.ts +0 -0
  40. package/dist/ua_cnc_spindle_list.js +2 -2
  41. package/package.json +22 -21
@@ -1,24 +1,24 @@
1
- /**
2
- * Turn direction of a CNC spindle.
3
- *
4
- * | | |
5
- * |-----------|--------------------------------------------------|
6
- * | namespace |http://opcfoundation.org/UA/CNC |
7
- * | nodeClass |DataType |
8
- * | name |11:CncSpindleTurnDirection |
9
- * | isAbstract|false |
10
- */
11
- export declare enum EnumCncSpindleTurnDirection {
12
- /**
13
- * No rotation
14
- */
15
- None = 0,
16
- /**
17
- * Clockwise
18
- */
19
- CW = 1,
20
- /**
21
- * Counter Clockwise
22
- */
23
- CCW = 2
24
- }
1
+ /**
2
+ * Turn direction of a CNC spindle.
3
+ *
4
+ * | | |
5
+ * |-----------|--------------------------------------------------|
6
+ * | namespace |http://opcfoundation.org/UA/CNC |
7
+ * | nodeClass |DataType |
8
+ * | name |11:CncSpindleTurnDirection |
9
+ * | isAbstract|false |
10
+ */
11
+ export declare enum EnumCncSpindleTurnDirection {
12
+ /**
13
+ * No rotation
14
+ */
15
+ None = 0,
16
+ /**
17
+ * Clockwise
18
+ */
19
+ CW = 1,
20
+ /**
21
+ * Counter Clockwise
22
+ */
23
+ CCW = 2
24
+ }
@@ -1,30 +1,30 @@
1
- "use strict";
2
- // ----- this file has been automatically generated - do not edit
3
- Object.defineProperty(exports, "__esModule", { value: true });
4
- exports.EnumCncSpindleTurnDirection = void 0;
5
- /**
6
- * Turn direction of a CNC spindle.
7
- *
8
- * | | |
9
- * |-----------|--------------------------------------------------|
10
- * | namespace |http://opcfoundation.org/UA/CNC |
11
- * | nodeClass |DataType |
12
- * | name |11:CncSpindleTurnDirection |
13
- * | isAbstract|false |
14
- */
15
- var EnumCncSpindleTurnDirection;
16
- (function (EnumCncSpindleTurnDirection) {
17
- /**
18
- * No rotation
19
- */
20
- EnumCncSpindleTurnDirection[EnumCncSpindleTurnDirection["None"] = 0] = "None";
21
- /**
22
- * Clockwise
23
- */
24
- EnumCncSpindleTurnDirection[EnumCncSpindleTurnDirection["CW"] = 1] = "CW";
25
- /**
26
- * Counter Clockwise
27
- */
28
- EnumCncSpindleTurnDirection[EnumCncSpindleTurnDirection["CCW"] = 2] = "CCW";
29
- })(EnumCncSpindleTurnDirection = exports.EnumCncSpindleTurnDirection || (exports.EnumCncSpindleTurnDirection = {}));
1
+ "use strict";
2
+ // ----- this file has been automatically generated - do not edit
3
+ Object.defineProperty(exports, "__esModule", { value: true });
4
+ exports.EnumCncSpindleTurnDirection = void 0;
5
+ /**
6
+ * Turn direction of a CNC spindle.
7
+ *
8
+ * | | |
9
+ * |-----------|--------------------------------------------------|
10
+ * | namespace |http://opcfoundation.org/UA/CNC |
11
+ * | nodeClass |DataType |
12
+ * | name |11:CncSpindleTurnDirection |
13
+ * | isAbstract|false |
14
+ */
15
+ var EnumCncSpindleTurnDirection;
16
+ (function (EnumCncSpindleTurnDirection) {
17
+ /**
18
+ * No rotation
19
+ */
20
+ EnumCncSpindleTurnDirection[EnumCncSpindleTurnDirection["None"] = 0] = "None";
21
+ /**
22
+ * Clockwise
23
+ */
24
+ EnumCncSpindleTurnDirection[EnumCncSpindleTurnDirection["CW"] = 1] = "CW";
25
+ /**
26
+ * Counter Clockwise
27
+ */
28
+ EnumCncSpindleTurnDirection[EnumCncSpindleTurnDirection["CCW"] = 2] = "CCW";
29
+ })(EnumCncSpindleTurnDirection = exports.EnumCncSpindleTurnDirection || (exports.EnumCncSpindleTurnDirection = {}));
30
30
  //# sourceMappingURL=enum_cnc_spindle_turn_direction.js.map
package/dist/index.d.ts CHANGED
@@ -1,19 +1,19 @@
1
- export * from "./dt_cnc_position";
2
- export * from "./enum_cnc_axis_status";
3
- export * from "./enum_cnc_channel_program_status";
4
- export * from "./enum_cnc_channel_status";
5
- export * from "./enum_cnc_operation_mode";
6
- export * from "./enum_cnc_spindle_status";
7
- export * from "./enum_cnc_spindle_turn_direction";
8
- export * from "./ua_cnc_alarm";
9
- export * from "./ua_cnc_axis";
10
- export * from "./ua_cnc_axis_list";
11
- export * from "./ua_cnc_channel";
12
- export * from "./ua_cnc_channel_list";
13
- export * from "./ua_cnc_component";
14
- export * from "./ua_cnc_drive";
15
- export * from "./ua_cnc_interface";
16
- export * from "./ua_cnc_message";
17
- export * from "./ua_cnc_position_variable";
18
- export * from "./ua_cnc_spindle";
19
- export * from "./ua_cnc_spindle_list";
1
+ export * from "./dt_cnc_position";
2
+ export * from "./enum_cnc_axis_status";
3
+ export * from "./enum_cnc_channel_program_status";
4
+ export * from "./enum_cnc_channel_status";
5
+ export * from "./enum_cnc_operation_mode";
6
+ export * from "./enum_cnc_spindle_status";
7
+ export * from "./enum_cnc_spindle_turn_direction";
8
+ export * from "./ua_cnc_alarm";
9
+ export * from "./ua_cnc_axis";
10
+ export * from "./ua_cnc_axis_list";
11
+ export * from "./ua_cnc_channel";
12
+ export * from "./ua_cnc_channel_list";
13
+ export * from "./ua_cnc_component";
14
+ export * from "./ua_cnc_drive";
15
+ export * from "./ua_cnc_interface";
16
+ export * from "./ua_cnc_message";
17
+ export * from "./ua_cnc_position_variable";
18
+ export * from "./ua_cnc_spindle";
19
+ export * from "./ua_cnc_spindle_list";
package/dist/index.js CHANGED
@@ -1,32 +1,32 @@
1
- "use strict";
2
- var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
- if (k2 === undefined) k2 = k;
4
- Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
5
- }) : (function(o, m, k, k2) {
6
- if (k2 === undefined) k2 = k;
7
- o[k2] = m[k];
8
- }));
9
- var __exportStar = (this && this.__exportStar) || function(m, exports) {
10
- for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
11
- };
12
- Object.defineProperty(exports, "__esModule", { value: true });
13
- __exportStar(require("./dt_cnc_position"), exports);
14
- __exportStar(require("./enum_cnc_axis_status"), exports);
15
- __exportStar(require("./enum_cnc_channel_program_status"), exports);
16
- __exportStar(require("./enum_cnc_channel_status"), exports);
17
- __exportStar(require("./enum_cnc_operation_mode"), exports);
18
- __exportStar(require("./enum_cnc_spindle_status"), exports);
19
- __exportStar(require("./enum_cnc_spindle_turn_direction"), exports);
20
- __exportStar(require("./ua_cnc_alarm"), exports);
21
- __exportStar(require("./ua_cnc_axis"), exports);
22
- __exportStar(require("./ua_cnc_axis_list"), exports);
23
- __exportStar(require("./ua_cnc_channel"), exports);
24
- __exportStar(require("./ua_cnc_channel_list"), exports);
25
- __exportStar(require("./ua_cnc_component"), exports);
26
- __exportStar(require("./ua_cnc_drive"), exports);
27
- __exportStar(require("./ua_cnc_interface"), exports);
28
- __exportStar(require("./ua_cnc_message"), exports);
29
- __exportStar(require("./ua_cnc_position_variable"), exports);
30
- __exportStar(require("./ua_cnc_spindle"), exports);
31
- __exportStar(require("./ua_cnc_spindle_list"), exports);
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
5
+ }) : (function(o, m, k, k2) {
6
+ if (k2 === undefined) k2 = k;
7
+ o[k2] = m[k];
8
+ }));
9
+ var __exportStar = (this && this.__exportStar) || function(m, exports) {
10
+ for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
11
+ };
12
+ Object.defineProperty(exports, "__esModule", { value: true });
13
+ __exportStar(require("./dt_cnc_position"), exports);
14
+ __exportStar(require("./enum_cnc_axis_status"), exports);
15
+ __exportStar(require("./enum_cnc_channel_program_status"), exports);
16
+ __exportStar(require("./enum_cnc_channel_status"), exports);
17
+ __exportStar(require("./enum_cnc_operation_mode"), exports);
18
+ __exportStar(require("./enum_cnc_spindle_status"), exports);
19
+ __exportStar(require("./enum_cnc_spindle_turn_direction"), exports);
20
+ __exportStar(require("./ua_cnc_alarm"), exports);
21
+ __exportStar(require("./ua_cnc_axis"), exports);
22
+ __exportStar(require("./ua_cnc_axis_list"), exports);
23
+ __exportStar(require("./ua_cnc_channel"), exports);
24
+ __exportStar(require("./ua_cnc_channel_list"), exports);
25
+ __exportStar(require("./ua_cnc_component"), exports);
26
+ __exportStar(require("./ua_cnc_drive"), exports);
27
+ __exportStar(require("./ua_cnc_interface"), exports);
28
+ __exportStar(require("./ua_cnc_message"), exports);
29
+ __exportStar(require("./ua_cnc_position_variable"), exports);
30
+ __exportStar(require("./ua_cnc_spindle"), exports);
31
+ __exportStar(require("./ua_cnc_spindle_list"), exports);
32
32
  //# sourceMappingURL=index.js.map
@@ -1,36 +1,36 @@
1
- import { UAProperty } from "node-opcua-address-space-base";
2
- import { DataType } from "node-opcua-variant";
3
- import { UAString } from "node-opcua-basic-types";
4
- import { UADiscreteAlarm, UADiscreteAlarm_Base } from "node-opcua-nodeset-ua/source/ua_discrete_alarm";
5
- /**
6
- * Event transmitting Alarms within a CNC system.
7
- *
8
- * | | |
9
- * |----------------|--------------------------------------------------|
10
- * |namespace |http://opcfoundation.org/UA/CNC |
11
- * |nodeClass |ObjectType |
12
- * |typedDefinition |11:CncAlarmType ns=11;i=1006 |
13
- * |isAbstract |false |
14
- */
15
- export interface UACncAlarm_Base extends UADiscreteAlarm_Base {
16
- /**
17
- * alarmIdentifier
18
- * Unique alarm number.
19
- */
20
- alarmIdentifier: UAProperty<UAString, /*z*/ DataType.String>;
21
- /**
22
- * auxParameters
23
- * Array of auxiliary parameter for additional alarm
24
- * description.
25
- */
26
- auxParameters?: UAProperty<UAString[], /*z*/ DataType.String>;
27
- /**
28
- * helpSource
29
- * Additional information to message giving
30
- * information on how to solve problem that caused
31
- * the alarm.
32
- */
33
- helpSource?: UAProperty<UAString, /*z*/ DataType.String>;
34
- }
35
- export interface UACncAlarm extends UADiscreteAlarm, UACncAlarm_Base {
36
- }
1
+ import { UAProperty } from "node-opcua-address-space-base";
2
+ import { DataType } from "node-opcua-variant";
3
+ import { UAString } from "node-opcua-basic-types";
4
+ import { UADiscreteAlarm, UADiscreteAlarm_Base } from "node-opcua-nodeset-ua/source/ua_discrete_alarm";
5
+ /**
6
+ * Event transmitting Alarms within a CNC system.
7
+ *
8
+ * | | |
9
+ * |----------------|--------------------------------------------------|
10
+ * |namespace |http://opcfoundation.org/UA/CNC |
11
+ * |nodeClass |ObjectType |
12
+ * |typedDefinition |11:CncAlarmType ns=11;i=1006 |
13
+ * |isAbstract |false |
14
+ */
15
+ export interface UACncAlarm_Base extends UADiscreteAlarm_Base {
16
+ /**
17
+ * alarmIdentifier
18
+ * Unique alarm number.
19
+ */
20
+ alarmIdentifier: UAProperty<UAString, /*z*/ DataType.String>;
21
+ /**
22
+ * auxParameters
23
+ * Array of auxiliary parameter for additional alarm
24
+ * description.
25
+ */
26
+ auxParameters?: UAProperty<UAString[], /*z*/ DataType.String>;
27
+ /**
28
+ * helpSource
29
+ * Additional information to message giving
30
+ * information on how to solve problem that caused
31
+ * the alarm.
32
+ */
33
+ helpSource?: UAProperty<UAString, /*z*/ DataType.String>;
34
+ }
35
+ export interface UACncAlarm extends UADiscreteAlarm, UACncAlarm_Base {
36
+ }
@@ -1,3 +1,3 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
3
  //# sourceMappingURL=ua_cnc_alarm.js.map
@@ -1,61 +1,61 @@
1
- import { UAProperty } from "node-opcua-address-space-base";
2
- import { DataType } from "node-opcua-variant";
3
- import { EUInformation } from "node-opcua-data-access";
4
- import { UAAnalogItem } from "node-opcua-nodeset-ua/source/ua_analog_item";
5
- import { DTRange } from "node-opcua-nodeset-ua/source/dt_range";
6
- import { UADataItem } from "node-opcua-nodeset-ua/source/ua_data_item";
7
- import { UACncDrive, UACncDrive_Base } from "./ua_cnc_drive";
8
- import { DTCncPosition } from "./dt_cnc_position";
9
- import { UACncPositionVariable } from "./ua_cnc_position_variable";
10
- export interface UACncAxis_zeroOffset<T, DT extends DataType> extends Omit<UAAnalogItem<T, /*b*/ DT>, "engineeringUnits" | "euRange"> {
11
- engineeringUnits: UAProperty<EUInformation, /*z*/ DataType.ExtensionObject>;
12
- euRange: UAProperty<DTRange, /*z*/ DataType.ExtensionObject>;
13
- }
14
- /**
15
- * CNC axis component.
16
- *
17
- * | | |
18
- * |----------------|--------------------------------------------------|
19
- * |namespace |http://opcfoundation.org/UA/CNC |
20
- * |nodeClass |ObjectType |
21
- * |typedDefinition |11:CncAxisType ns=11;i=1004 |
22
- * |isAbstract |false |
23
- */
24
- export interface UACncAxis_Base extends UACncDrive_Base {
25
- /**
26
- * actStatus
27
- * Actual axis state.
28
- */
29
- actStatus: UADataItem<any, any>;
30
- /**
31
- * isReferenced
32
- * Axis reference state (true in case of
33
- * successfully refereneced axis, else false).
34
- */
35
- isReferenced: UADataItem<boolean, /*z*/ DataType.Boolean>;
36
- /**
37
- * isRotational
38
- * Axis type (true in case of rotational axis, in
39
- * case of linear type or other false).
40
- */
41
- isRotational: UADataItem<boolean, /*z*/ DataType.Boolean>;
42
- /**
43
- * posDirect
44
- * Position actual value referring to axis' direct
45
- * measurement system.
46
- */
47
- posDirect: UACncPositionVariable<DTCncPosition>;
48
- /**
49
- * posIndirect
50
- * Position actual value referring to axis' indirect
51
- * measurement system.
52
- */
53
- posIndirect: UACncPositionVariable<DTCncPosition>;
54
- /**
55
- * zeroOffset
56
- * Active axis zero offset.
57
- */
58
- zeroOffset: UACncAxis_zeroOffset<number, /*z*/ DataType.Double>;
59
- }
60
- export interface UACncAxis extends UACncDrive, UACncAxis_Base {
61
- }
1
+ import { UAProperty } from "node-opcua-address-space-base";
2
+ import { DataType } from "node-opcua-variant";
3
+ import { EUInformation } from "node-opcua-data-access";
4
+ import { UAAnalogItem } from "node-opcua-nodeset-ua/source/ua_analog_item";
5
+ import { DTRange } from "node-opcua-nodeset-ua/source/dt_range";
6
+ import { UADataItem } from "node-opcua-nodeset-ua/source/ua_data_item";
7
+ import { UACncDrive, UACncDrive_Base } from "./ua_cnc_drive";
8
+ import { DTCncPosition } from "./dt_cnc_position";
9
+ import { UACncPositionVariable } from "./ua_cnc_position_variable";
10
+ export interface UACncAxis_zeroOffset<T, DT extends DataType> extends Omit<UAAnalogItem<T, /*b*/ DT>, "engineeringUnits" | "euRange"> {
11
+ engineeringUnits: UAProperty<EUInformation, /*z*/ DataType.ExtensionObject>;
12
+ euRange: UAProperty<DTRange, /*z*/ DataType.ExtensionObject>;
13
+ }
14
+ /**
15
+ * CNC axis component.
16
+ *
17
+ * | | |
18
+ * |----------------|--------------------------------------------------|
19
+ * |namespace |http://opcfoundation.org/UA/CNC |
20
+ * |nodeClass |ObjectType |
21
+ * |typedDefinition |11:CncAxisType ns=11;i=1004 |
22
+ * |isAbstract |false |
23
+ */
24
+ export interface UACncAxis_Base extends UACncDrive_Base {
25
+ /**
26
+ * actStatus
27
+ * Actual axis state.
28
+ */
29
+ actStatus: UADataItem<any, any>;
30
+ /**
31
+ * isReferenced
32
+ * Axis reference state (true in case of
33
+ * successfully refereneced axis, else false).
34
+ */
35
+ isReferenced: UADataItem<boolean, /*z*/ DataType.Boolean>;
36
+ /**
37
+ * isRotational
38
+ * Axis type (true in case of rotational axis, in
39
+ * case of linear type or other false).
40
+ */
41
+ isRotational: UADataItem<boolean, /*z*/ DataType.Boolean>;
42
+ /**
43
+ * posDirect
44
+ * Position actual value referring to axis' direct
45
+ * measurement system.
46
+ */
47
+ posDirect: UACncPositionVariable<DTCncPosition>;
48
+ /**
49
+ * posIndirect
50
+ * Position actual value referring to axis' indirect
51
+ * measurement system.
52
+ */
53
+ posIndirect: UACncPositionVariable<DTCncPosition>;
54
+ /**
55
+ * zeroOffset
56
+ * Active axis zero offset.
57
+ */
58
+ zeroOffset: UACncAxis_zeroOffset<number, /*z*/ DataType.Double>;
59
+ }
60
+ export interface UACncAxis extends UACncDrive, UACncAxis_Base {
61
+ }
@@ -1,3 +1,3 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
3
  //# sourceMappingURL=ua_cnc_axis.js.map
@@ -1,15 +1,15 @@
1
- import { UAObject } from "node-opcua-address-space-base";
2
- /**
3
- * List of CNC axis objects.
4
- *
5
- * | | |
6
- * |----------------|--------------------------------------------------|
7
- * |namespace |http://opcfoundation.org/UA/CNC |
8
- * |nodeClass |ObjectType |
9
- * |typedDefinition |11:CncAxisListType ns=11;i=1008 |
10
- * |isAbstract |false |
11
- */
12
- export interface UACncAxisList_Base {
13
- }
14
- export interface UACncAxisList extends UAObject, UACncAxisList_Base {
15
- }
1
+ import { UAObject } from "node-opcua-address-space-base";
2
+ /**
3
+ * List of CNC axis objects.
4
+ *
5
+ * | | |
6
+ * |----------------|--------------------------------------------------|
7
+ * |namespace |http://opcfoundation.org/UA/CNC |
8
+ * |nodeClass |ObjectType |
9
+ * |typedDefinition |11:CncAxisListType ns=11;i=1008 |
10
+ * |isAbstract |false |
11
+ */
12
+ export interface UACncAxisList_Base {
13
+ }
14
+ export interface UACncAxisList extends UAObject, UACncAxisList_Base {
15
+ }
@@ -1,3 +1,3 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
3
  //# sourceMappingURL=ua_cnc_axis_list.js.map
Binary file
@@ -1,3 +1,3 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
3
  //# sourceMappingURL=ua_cnc_channel.js.map
@@ -1,15 +1,15 @@
1
- import { UAObject } from "node-opcua-address-space-base";
2
- /**
3
- * List of CNC channel objects.
4
- *
5
- * | | |
6
- * |----------------|--------------------------------------------------|
7
- * |namespace |http://opcfoundation.org/UA/CNC |
8
- * |nodeClass |ObjectType |
9
- * |typedDefinition |11:CncChannelListType ns=11;i=1010 |
10
- * |isAbstract |false |
11
- */
12
- export interface UACncChannelList_Base {
13
- }
14
- export interface UACncChannelList extends UAObject, UACncChannelList_Base {
15
- }
1
+ import { UAObject } from "node-opcua-address-space-base";
2
+ /**
3
+ * List of CNC channel objects.
4
+ *
5
+ * | | |
6
+ * |----------------|--------------------------------------------------|
7
+ * |namespace |http://opcfoundation.org/UA/CNC |
8
+ * |nodeClass |ObjectType |
9
+ * |typedDefinition |11:CncChannelListType ns=11;i=1010 |
10
+ * |isAbstract |false |
11
+ */
12
+ export interface UACncChannelList_Base {
13
+ }
14
+ export interface UACncChannelList extends UAObject, UACncChannelList_Base {
15
+ }
@@ -1,3 +1,3 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
3
  //# sourceMappingURL=ua_cnc_channel_list.js.map
@@ -1,16 +1,16 @@
1
- import { UAObject } from "node-opcua-address-space-base";
2
- /**
3
- * Base component for soft- or hardware elements of
4
- * a CNC system.
5
- *
6
- * | | |
7
- * |----------------|--------------------------------------------------|
8
- * |namespace |http://opcfoundation.org/UA/CNC |
9
- * |nodeClass |ObjectType |
10
- * |typedDefinition |11:CncComponentType ns=11;i=1001 |
11
- * |isAbstract |true |
12
- */
13
- export interface UACncComponent_Base {
14
- }
15
- export interface UACncComponent extends UAObject, UACncComponent_Base {
16
- }
1
+ import { UAObject } from "node-opcua-address-space-base";
2
+ /**
3
+ * Base component for soft- or hardware elements of
4
+ * a CNC system.
5
+ *
6
+ * | | |
7
+ * |----------------|--------------------------------------------------|
8
+ * |namespace |http://opcfoundation.org/UA/CNC |
9
+ * |nodeClass |ObjectType |
10
+ * |typedDefinition |11:CncComponentType ns=11;i=1001 |
11
+ * |isAbstract |true |
12
+ */
13
+ export interface UACncComponent_Base {
14
+ }
15
+ export interface UACncComponent extends UAObject, UACncComponent_Base {
16
+ }
@@ -1,3 +1,3 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
3
  //# sourceMappingURL=ua_cnc_component.js.map
Binary file
@@ -1,3 +1,3 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
3
  //# sourceMappingURL=ua_cnc_drive.js.map