Skip to content

Commit

Permalink
chore: fix PseudoVariant definition typo
Browse files Browse the repository at this point in the history
  • Loading branch information
erossignon committed Jul 14, 2023
1 parent 83bca12 commit 4c82abc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/node-opcua-address-space-base/source/ua_object.ts
Original file line number Diff line number Diff line change
Expand Up @@ -60,11 +60,11 @@ export interface PseudoVariantByte {
value: Byte;
}
export interface PseudoVariantInt32 {
dataType: "Int32" | DataType.UInt32;
dataType: "Int32" | DataType.Int32;
value: Int32;
}
export interface PseudoVariantInt16 {
dataType: "Int16" | DataType.UInt16;
dataType: "Int16" | DataType.Int16;
value: Int16;
}
export interface PseudoVariantSByte {
Expand Down

0 comments on commit 4c82abc

Please sign in to comment.