joy-con-webhid
Version:
Joy-Con over WebHID
18 lines (17 loc) • 639 B
TypeScript
/**
* Concatenates two typed arrays of the same type into a new typed array.
*
* @template T - The type of typed array extending Uint8Array
* @param a - The first typed array to concatenate
* @param b - The second typed array to concatenate
* @returns A new typed array of the same type containing elements from both input arrays
*
* @example
* ```typescript
* const arr1 = new Uint8Array([1, 2, 3]);
* const arr2 = new Uint8Array([4, 5, 6]);
* const result = concatTypedArrays(arr1, arr2);
* // result: Uint8Array([1, 2, 3, 4, 5, 6])
* ```
*/
export declare function concatTypedArrays<T extends Uint8Array>(a: T, b: T): T;