@resistdesign/voltra
    Preparing search index...

    Type Alias ApplicationStateContextType

    Context state and updater hooks for application state.

    type ApplicationStateContextType = {
        modified: ApplicationStateModificationState;
        onChange: Dispatch<SetStateAction<ApplicationState>>;
        setModified: Dispatch<SetStateAction<ApplicationStateModificationState>>;
        value: ApplicationState;
    }
    Index

    Properties

    Map of identifiers to modified flags.

    onChange: Dispatch<SetStateAction<ApplicationState>>

    Replace the current application state map.

    setModified: Dispatch<SetStateAction<ApplicationStateModificationState>>

    Replace the current modification state map.

    Map of identifiers to stored values.