UNPKG

@jay-js/system

Version:

A powerful and flexible TypeScript library for UI, state management, lazy loading, routing and managing draggable elements in modern web applications.

5 lines (4 loc) 210 B
import { StateType } from "../type/index.js"; export declare const State: <T>(data: T) => StateType<T>; export declare function Effect(fn: () => void): void; export declare function Values(fn: () => any): any;