Skip to content

Commit

Permalink
make length readonly
Browse files Browse the repository at this point in the history
  • Loading branch information
KiaraGrouwstra committed Aug 14, 2017
1 parent 9ae6350 commit fa530ff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/es5.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1077,7 +1077,7 @@ interface Tuple<TLength extends number, TUnion> extends ReadonlyArray<TUnion> {
/**
* Gets or sets the length of the array. This is a number one higher than the highest element defined in an array.
*/
length: TLength;
readonly length: TLength;
}

interface Array<T> {
Expand Down

0 comments on commit fa530ff

Please sign in to comment.