Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion async/chain.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ export async function* chain<
}

/**
* @inner
* @internal
*/
export type Chain<T> = T extends readonly [] ? never
: T extends readonly [Iterable<infer U>] ? U
Expand Down
2 changes: 1 addition & 1 deletion async/zip.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ export async function* zip<
}

/**
* @inner
* @internal
*/
export type Zip<T extends (Iterable<unknown> | AsyncIterable<unknown>)[]> = {
[P in keyof T]: T[P] extends Iterable<infer U> ? U
Expand Down
2 changes: 1 addition & 1 deletion chain.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ export function* chain<T extends Iterable<unknown>[]>(
}

/**
* @inner
* @internal
*/
export type Chain<T> = T extends readonly [] ? never
: T extends readonly [Iterable<infer U>] ? U
Expand Down
2 changes: 1 addition & 1 deletion zip.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ export function* zip<U extends Iterable<unknown>[]>(
}

/**
* @inner
* @internal
*/
export type Zip<T extends Iterable<unknown>[]> = {
[P in keyof T]: T[P] extends Iterable<infer U> ? U : never;
Expand Down