1
0

remove asArray

This commit is contained in:
2024-05-31 12:17:54 +02:00
parent 6c7eac8217
commit e915e88e0a
4 changed files with 0 additions and 23 deletions

View File

@@ -111,8 +111,6 @@ export interface AsyncSequence<TElement> extends AsyncIterable<TElement> {
cached(): AsyncSequence<TElement>;
asArray(): Promise<TElement[]>;
toArray(): Promise<TElement[]>;
toMap<TKey, TValue>(keySelector: MaybeAsyncConverter<TElement, TKey>, valueSelector: MaybeAsyncConverter<TElement, TValue>): Promise<Map<TKey, TValue>>;
toSet(): Promise<Set<TElement>>;