@resistdesign/voltra
    Preparing search index...

    Type Alias ApplicationStateValueController

    Used to access and update application state values.

    type ApplicationStateValueController = {
        modified: boolean;
        onChange: (value: ApplicationStateValue) => void;
        setModified: (value: boolean) => void;
        value: ApplicationStateValue;
    }
    Index

    Properties

    modified: boolean

    Whether the value is marked as modified.

    onChange: (value: ApplicationStateValue) => void

    Update the current value.

    Type Declaration

    setModified: (value: boolean) => void

    Update the modified flag.

    Type Declaration

      • (value: boolean): void
      • Parameters

        • value: boolean

          The new modified flag.

        Returns void

    The current value for the identifier.