UNPKG

@renewx/core

Version:

Lightweight state management library with validation support

10 lines (9 loc) 414 B
import type { ActionID } from "../types/id"; import type { ActionInfo } from "../types/action"; export declare const getAddInfo: () => boolean; export declare const newActionInfo: (name?: string) => ActionInfo | undefined; export declare const getSetInfo: () => ActionInfo | undefined; export declare const ActionAPI: { nameById: (actionID: ActionID) => string; setAddInfo: (value: boolean) => boolean; };