Skip to content

Commit 2c16369

Browse files
authored
Fix StaticArray definition in types file (#1161)
1 parent c9d7426 commit 2c16369

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

std/assembly/index.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1400,8 +1400,8 @@ declare class Array<T> {
14001400
toString(): string;
14011401
}
14021402

1403-
/** Class representing a static (not resizable) sequence of values of type `T`. */
1404-
declare abstract class StaticArray<T> {
1403+
/** Class representing a static (not resizable) sequence of values of type `T`. This class is @sealed. */
1404+
declare class StaticArray<T> {
14051405
[key: number]: T;
14061406
static fromArray<T>(source: Array<T>): StaticArray<T>;
14071407
static concat<T>(source: StaticArray<T>, other: StaticArray<T>): StaticArray<T>;

0 commit comments

Comments
 (0)