UNPKG

355 BTypeScriptView Raw
1import { IDagHistory, StateId } from '../interfaces';
2import DagGraph from '../DagGraph';
3export declare function jump<T>(stateId: StateId, history: IDagHistory<T>, callback?: ((g: DagGraph<T>) => void)): IDagHistory<T>;
4export declare function jumpLog<T>(stateId: StateId, history: IDagHistory<T>, callback?: ((g: DagGraph<T>) => void)): IDagHistory<T>;