fix casing on type

This commit is contained in:
2024-12-05 23:20:13 -06:00
parent d3c92f6ee2
commit b300978e05
+2 -2
View File
@@ -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;
};