UNPKG

next-flow-interface

Version:

Interface package for NEXT FlOW. You can use this package to build your own plugin that can control anything.

7 lines 252 B
import { RvPath } from 'rhine-var'; export type UseBase = <T = unknown>(path?: string) => { state: T; set: (key: string | RvPath, value: unknown) => void; check: (key: string | RvPath) => void; }; //# sourceMappingURL=use-base.type.d.ts.map