UNPKG

@lucsoft/webgen

Version:

Collection of lucsofts Components

8 lines (7 loc) 275 B
import { Component } from "./RenderingX"; export declare type ViewOptions<State> = { use: (comp: Component) => void; state: Partial<State>; update: (data: Partial<State>) => void; }; export declare type ViewOptionsFunc<State> = (opt: ViewOptions<State>) => void;