@cspell/cspell-pipe
Version:
Library to make working with Iterators/AsyncIterators easier.
4 lines • 334 B
TypeScript
export declare function opSkipAsync<T>(count: number): (iter: AsyncIterable<T> | Iterable<T>) => AsyncIterable<T>;
export declare function opSkipSync<T>(count: number): (iter: Iterable<T>) => Iterable<T>;
export declare const opSkip: <T>(count: number) => import("../internalTypes.js").PipeFn<T, T>;
//# sourceMappingURL=skip.d.ts.map