We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c9d7426 commit 2c16369Copy full SHA for 2c16369
std/assembly/index.d.ts
@@ -1400,8 +1400,8 @@ declare class Array<T> {
1400
toString(): string;
1401
}
1402
1403
-/** Class representing a static (not resizable) sequence of values of type `T`. */
1404
-declare abstract class StaticArray<T> {
+/** Class representing a static (not resizable) sequence of values of type `T`. This class is @sealed. */
+declare class StaticArray<T> {
1405
[key: number]: T;
1406
static fromArray<T>(source: Array<T>): StaticArray<T>;
1407
static concat<T>(source: StaticArray<T>, other: StaticArray<T>): StaticArray<T>;
0 commit comments