Properties

destroy: () => void

Use unsubscribe returned by subscribe

getInitialState: () => FormEditorStore
getState: () => FormEditorStore
setState: (
    partial:
        | FormEditorStore
        | Partial<FormEditorStore>
        | (state: FormEditorStore) => FormEditorStore | Partial<FormEditorStore>,
    replace?: boolean,
) => void
subscribe: (
    listener: (state: FormEditorStore, prevState: FormEditorStore) => void,
) => () => void