Files
2026-02-25 00:50:23 +05:30

6 lines
138 B
TypeScript

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