6 lines
138 B
TypeScript
6 lines
138 B
TypeScript
import type {IntoInterator} from './types';
|
|
|
|
export default function chain<T>(
|
|
...iterables: IntoInterator<T>[]
|
|
): IterableIterator<T>;
|