UNPKG

rfa

Version:

**React Form Architect** is an ultimate solution for creating and rendering forms in React. Its main focus is to provide users with a tool to define, render and share a form in a browser.

8 lines (7 loc) 319 B
import { FormSchemaType } from './store'; import type { StoreActions } from 'react-simple-hook-store'; export declare type StoreGlobalActions = { setStore: (newStore: FormSchemaType) => void; clearStore: () => void; }; export declare const storeActions: StoreActions<FormSchemaType, StoreGlobalActions>;