We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 852d0d6 commit 7f9c1a0Copy full SHA for 7f9c1a0
src/runtime/types/runtime.ts
@@ -73,7 +73,7 @@ export interface AsLoaderRuntime {
73
/** Allocates a new string in the module's memory and returns a reference (pointer) to it. */
74
__newString(str: string): Pointer<string>;
75
/** Allocates a new array in the module's memory and returns a reference (pointer) to it. */
76
- __newArray<T extends ArrayLike<T>>(id: number, values: T): Pointer<T>;
+ __newArray<T extends ArrayLike<unknown>>(id: number, values: T): Pointer<T>;
77
78
/** Allocates an instance of the class represented by the specified id. */
79
__new<T>(size: number, id: TypeId<T>): Pointer<T>;
0 commit comments