From 9932fe84896a41a6809896fefde19855d734e5c7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Douglas=20Gad=C3=AAlha?= Date: Fri, 29 Dec 2023 02:48:29 -0300 Subject: [PATCH] chore(types/merge): fix return type for merge with 5, 6 args (#355) --- src/asynciterable/merge.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/asynciterable/merge.ts b/src/asynciterable/merge.ts index 4a46d6b8..45145870 100644 --- a/src/asynciterable/merge.ts +++ b/src/asynciterable/merge.ts @@ -113,7 +113,7 @@ export function merge( * @param {AsyncIterable} v3 The third async-iterable source to merge. * @param {AsyncIterable} v4 The fourth async-iterable source to merge. * @param {AsyncIterable} v5 The fifth async-iterable source to merge. - * @returns {(AsyncIterable)} The merged elements from all of the specified async-iterable sequences + * @returns {(AsyncIterableX)} The merged elements from all of the specified async-iterable sequences * into a single async-iterable sequence. */ export function merge( @@ -122,7 +122,7 @@ export function merge( v3: AsyncIterable, v4: AsyncIterable, v5: AsyncIterable -): AsyncIterable; +): AsyncIterableX; /** * Merges elements from all of the specified async-iterable sequences into a single async-iterable sequence. * @@ -138,7 +138,7 @@ export function merge( * @param {AsyncIterable} v4 The fourth async-iterable source to merge. * @param {AsyncIterable} v5 The fifth async-iterable source to merge. * @param {AsyncIterable} v6 The sixth async-iterable source to merge. - * @returns {(AsyncIterable)} The merged elements from all of the specified async-iterable sequences + * @returns {(AsyncIterableX)} The merged elements from all of the specified async-iterable sequences * into a single async-iterable sequence. */ export function merge( @@ -148,7 +148,7 @@ export function merge( v4: AsyncIterable, v5: AsyncIterable, v6: AsyncIterable -): AsyncIterable; +): AsyncIterableX; /** * Merges elements from all of the specified async-iterable sequences into a single async-iterable sequence. *