lazzy.ts
Version:
Fast and lightweight library for lazy operations with iterable objects.
4 lines • 327 B
TypeScript
import { PromiseValue } from "../common";
export declare function skip<T, R, N>(iterator: Iterator<T, R, N>, count: number): Generator<T, R, undefined>;
export declare function skipAsync<T, R, N>(iterator: AsyncIterator<T, R, N>, count: number): AsyncGenerator<PromiseValue<T>, R, undefined>;
//# sourceMappingURL=skip.d.ts.map