UNPKG

@platform/state

Version:

A small, simple, strongly typed, [rx/observable] state-machine.

7 lines (6 loc) 251 B
import { t } from '../common'; declare type O = Record<string, unknown>; declare type N = t.ITreeNode; declare type E = t.Event<O>; export declare function create<T extends N, A extends E>(tree: t.ITreeState<T, A>): t.ITreeStatePath<T, A>; export {};