UNPKG

surrogate

Version:

Object method hooks made easy

7 lines (6 loc) 282 B
import type { INext, NextOptions } from '../interfaces'; import { BaseNext } from './baseNext'; export declare class Next<T extends object> extends BaseNext<T> implements INext { skipWith(times?: number, ...args: any[]): void; handleNext(nextOptions?: NextOptions): void; }