diff --git a/std/assembly/index.d.ts b/std/assembly/index.d.ts index af2c7f4181..02d2e5b14a 100644 --- a/std/assembly/index.d.ts +++ b/std/assembly/index.d.ts @@ -1578,8 +1578,7 @@ declare class Array { /** Current length of the array. */ length: i32; /** Constructs a new array. */ - constructor(capacity?: i32); - + constructor(length?: i32); at(index: i32): T; fill(value: T, start?: i32, end?: i32): this; every(callbackfn: (element: T, index: i32, array?: Array) => bool): bool;