UNPKG

dmeditor

Version:

dmeditor is a block-style visual editor. Data is in json format.

12 lines (11 loc) 523 B
import { AlignType } from '../property-setting/align/Align'; type State = { align: AlignType; }; type Actions = { alignStateChange: (align: AlignType) => void; }; declare const useAlignStore: import("zustand").UseBoundStore<Omit<import("zustand").StoreApi<State & Actions>, "setState"> & { setState(nextStateOrUpdater: (State & Actions) | Partial<State & Actions> | ((state: import("immer").WritableDraft<State & Actions>) => void), shouldReplace?: boolean | undefined): void; }>; export default useAlignStore;