Skip to content

Commit fa530ff

Browse files
make length readonly
1 parent 9ae6350 commit fa530ff

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/lib/es5.d.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1077,7 +1077,7 @@ interface Tuple<TLength extends number, TUnion> extends ReadonlyArray<TUnion> {
10771077
/**
10781078
* Gets or sets the length of the array. This is a number one higher than the highest element defined in an array.
10791079
*/
1080-
length: TLength;
1080+
readonly length: TLength;
10811081
}
10821082

10831083
interface Array<T> {

0 commit comments

Comments
 (0)