@reatom/devtools
Version:
Reatom developer tools for states and actions inspecting
13 lines • 434 B
TypeScript
import { Action, AtomCache, LinkedListAtom } from '@reatom/framework';
import { JSX } from '../jsx';
interface Params {
patch: AtomCache;
svg: SVGElement;
}
export interface Lines extends LinkedListAtom<[Params], JSX.Element, never> {
highlight: Action<[Params], void>;
redraw: Action<[svg: SVGElement]>;
}
export declare const reatomLines: (name: string) => Lines;
export {};
//# sourceMappingURL=reatomLines.d.ts.map