UNPKG

x-view-model

Version:

A lightweight, type-safe MVVM state management solution for React applications. Features reactive updates, computed properties, and deep path selection with minimal bundle size.

6 lines (5 loc) 242 B
import { PropsWithChildren } from 'react'; import { DevToolsHandler } from "./core/handler/DevToolsHandler"; export declare const DevTools: ({ children, devTools, }: PropsWithChildren<{ devTools: DevToolsHandler; }>) => JSX.Element;