Skip to content

Commit 773a5be

Browse files
committed
sorted-list definiation
1 parent 01013b3 commit 773a5be

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

build/multiplex.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -871,7 +871,7 @@ declare module mx {
871871
* Gets or sets the number of elements that the SortedList can contain.
872872
* @param value The number of elements that the SortedList can contain.
873873
*/
874-
capacity(value: number): number
874+
capacity(value?: number): number
875875

876876

877877
/**
@@ -883,7 +883,7 @@ declare module mx {
883883
/**
884884
* Gets the Comparer for the sorted list.
885885
*/
886-
comparer(): EqualityComparer<TKey>
886+
comparer(): Comparer<TKey>
887887

888888

889889
/**

src/typescript/multiplex.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -871,7 +871,7 @@ declare module mx {
871871
* Gets or sets the number of elements that the SortedList can contain.
872872
* @param value The number of elements that the SortedList can contain.
873873
*/
874-
capacity(value: number): number
874+
capacity(value?: number): number
875875

876876

877877
/**
@@ -883,7 +883,7 @@ declare module mx {
883883
/**
884884
* Gets the Comparer for the sorted list.
885885
*/
886-
comparer(): EqualityComparer<TKey>
886+
comparer(): Comparer<TKey>
887887

888888

889889
/**

0 commit comments

Comments
 (0)