From 54ec799f88edfe60a248201561a4b5c691bedfd5 Mon Sep 17 00:00:00 2001 From: Alex Hultman Date: Thu, 26 Mar 2026 19:15:21 +0000 Subject: [PATCH] [GitHub Actions] Updated ubuntu-24.04 binaries --- index.d.ts | 5 ++--- source_commit | 2 +- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/index.d.ts b/index.d.ts index 650f578e..4b8cd172 100644 --- a/index.d.ts +++ b/index.d.ts @@ -47,11 +47,10 @@ export interface AppDescriptor { * This because we expect UTF-8, which is packed in 8-byte chars. JavaScript strings are UTF-16 internally meaning extra copies and reinterpretation are required. * * That's why all events pass data by ArrayBuffer and not JavaScript strings, as they allow zero-copy data passing. + * * You can always do Buffer.from(arrayBuffer).toString(), but keeping things binary and as ArrayBuffer is preferred. - * - * The ArrayBufferView type includes Node.js Buffer, DataView, and TypedArray (Uint8Array, Uint16Array, ...). */ -export type RecognizedString = string | ArrayBuffer | SharedArrayBuffer | ArrayBufferView; +export type RecognizedString = string | ArrayBuffer | Uint8Array | Int8Array | Uint16Array | Int16Array | Uint32Array | Int32Array | Float32Array | Float64Array; /** A WebSocket connection that is valid from open to close event. * Read more about this in the user manual. diff --git a/source_commit b/source_commit index 8764ee5a..5888dff9 100644 --- a/source_commit +++ b/source_commit @@ -1 +1 @@ -0b0c8f90d3f0b59938c725ca0647458493ee086e +1c03fa0b7911bcf1aedeef92df9a5e1e17d30089