mirror of
https://github.com/FlipsideCrypto/DefinitelyTyped.git
synced 2026-02-06 10:56:53 +00:00
Add property length to SortedSet (#42872)
The SortedSet [documentation](https://www.collectionsjs.com/sorted-set) indicates that it has a property `length`.
This commit is contained in:
parent
631ce47c56
commit
15b7f25a65
2
types/collections/sorted-set.d.ts
vendored
2
types/collections/sorted-set.d.ts
vendored
@ -72,6 +72,8 @@ declare namespace internal {
|
||||
}
|
||||
|
||||
export class SortedSet<T> extends AbstractSet {
|
||||
length: number;
|
||||
|
||||
constructor(
|
||||
values?: T[],
|
||||
equals?: (a: T, b: T) => boolean,
|
||||
|
||||
Loading…
Reference in New Issue
Block a user