Files
2026-01-22 15:49:12 +01:00

6 lines
138 B
TypeScript

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