From b300978e05d6cbe6d6a58d8607fcc354517ce291 Mon Sep 17 00:00:00 2001 From: Joel Wetzell Date: Thu, 5 Dec 2024 23:20:13 -0600 Subject: [PATCH] fix casing on type --- packages/acn/src/models.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/acn/src/models.ts b/packages/acn/src/models.ts index 8136fbc..816e7f2 100644 --- a/packages/acn/src/models.ts +++ b/packages/acn/src/models.ts @@ -60,7 +60,7 @@ export type TransportLayerAddress = { address?: string; }; -export type SDTJOINData = { +export type SDTJoinData = { componentID: string; memberID: number; channelNumber: number; @@ -75,5 +75,5 @@ export type SDTJOINData = { export type SessionDataTransportPDU = { vector: SessionDataTransportVectors; // TODO(jwetzell): cleanup these types - data: SDTJOINData | Uint8Array; + data: SDTJoinData | Uint8Array; };