node-opcua-factory 2.68.0 → 2.71.0

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.
@@ -1,56 +1,56 @@
1
- import { BinaryStream, OutputBinaryStream } from "node-opcua-binary-stream";
2
- import { StructuredTypeSchema } from "./factories_structuredTypeSchema";
3
- export interface DecodeDebugOptions {
4
- tracer: any;
5
- name: string;
6
- }
7
- export interface BaseUAObject {
8
- schema: StructuredTypeSchema;
9
- }
10
- /**
11
- * @class BaseUAObject
12
- * @constructor
13
- */
14
- export declare class BaseUAObject {
15
- constructor();
16
- /**
17
- * Encode the object to the binary stream.
18
- * @class BaseUAObject
19
- * @method encode
20
- * @param stream {BinaryStream}
21
- */
22
- encode(stream: OutputBinaryStream): void;
23
- /**
24
- * Decode the object from the binary stream.
25
- * @class BaseUAObject
26
- * @method decode
27
- * @param stream {BinaryStream}
28
- */
29
- decode(stream: BinaryStream): void;
30
- /**
31
- * Calculate the required size to store this object in a binary stream.
32
- * @method binaryStoreSize
33
- * @return number
34
- */
35
- binaryStoreSize(): number;
36
- /**
37
- * @method toString
38
- * @return {String}
39
- */
40
- toString(...args: any[]): string;
41
- /**
42
- *
43
- * verify that all object attributes values are valid according to schema
44
- * @method isValid
45
- * @return boolean
46
- */
47
- isValid(): boolean;
48
- /**
49
- * @method decodeDebug
50
- *
51
- */
52
- decodeDebug(stream: BinaryStream, options: DecodeDebugOptions): void;
53
- explore(): string;
54
- toJSON(): any;
55
- clone(): any;
56
- }
1
+ import { BinaryStream, OutputBinaryStream } from "node-opcua-binary-stream";
2
+ import { StructuredTypeSchema } from "./factories_structuredTypeSchema";
3
+ export interface DecodeDebugOptions {
4
+ tracer: any;
5
+ name: string;
6
+ }
7
+ export interface BaseUAObject {
8
+ schema: StructuredTypeSchema;
9
+ }
10
+ /**
11
+ * @class BaseUAObject
12
+ * @constructor
13
+ */
14
+ export declare class BaseUAObject {
15
+ constructor();
16
+ /**
17
+ * Encode the object to the binary stream.
18
+ * @class BaseUAObject
19
+ * @method encode
20
+ * @param stream {BinaryStream}
21
+ */
22
+ encode(stream: OutputBinaryStream): void;
23
+ /**
24
+ * Decode the object from the binary stream.
25
+ * @class BaseUAObject
26
+ * @method decode
27
+ * @param stream {BinaryStream}
28
+ */
29
+ decode(stream: BinaryStream): void;
30
+ /**
31
+ * Calculate the required size to store this object in a binary stream.
32
+ * @method binaryStoreSize
33
+ * @return number
34
+ */
35
+ binaryStoreSize(): number;
36
+ /**
37
+ * @method toString
38
+ * @return {String}
39
+ */
40
+ toString(...args: any[]): string;
41
+ /**
42
+ *
43
+ * verify that all object attributes values are valid according to schema
44
+ * @method isValid
45
+ * @return boolean
46
+ */
47
+ isValid(): boolean;
48
+ /**
49
+ * @method decodeDebug
50
+ *
51
+ */
52
+ decodeDebug(stream: BinaryStream, options: DecodeDebugOptions): void;
53
+ explore(): string;
54
+ toJSON(): any;
55
+ clone(): any;
56
+ }