sync
This commit is contained in:
@@ -33,7 +33,7 @@ export function single<T>(obj: MaybePromiseLike<T>): AsyncSequence<T> {
|
||||
return new WrappedObjectAsync(obj);
|
||||
}
|
||||
|
||||
export function array<T>(array: MaybePromiseLike<T>[]): AsyncSequence<T> {
|
||||
export function array<T>(array: ReadonlyArray<MaybePromiseLike<T>>): AsyncSequence<T> {
|
||||
return new WrappedArrayAsync(array);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user