@resistdesign/voltra
    Preparing search index...

    Type Alias ApplicationStateContextType

    Context state and updater hooks for application state.

    type ApplicationStateContextType = {
        modified: ApplicationStateModificationState;
        onChange: (newValue: ApplicationState) => void;
        setModified: (newValue: ApplicationStateModificationState) => void;
        value: ApplicationState;
    }
    Index

    Properties

    Map of identifiers to modified flags.

    onChange: (newValue: ApplicationState) => void

    Replace the current application state map.

    setModified: (newValue: ApplicationStateModificationState) => void

    Replace the current modification state map.

    Map of identifiers to stored values.