UNPKG

monorepo-shared-assets

Version:

Shared assets used by various packages from nodemonorepo

8 lines (7 loc) 333 B
import * as types from '../../../.types'; export declare type Iter<X> = IterableIterator<X>; export declare function untilUnchange<X>(init: X, callback: untilUnchange.Callback<X>, equal?: types.Func.Comparator<X>): Iter<X>; export declare namespace untilUnchange { type Callback<X> = (x: X) => X; } export default untilUnchange;