@resistdesign/voltra
    Preparing search index...

    Type Alias ApplicationStateValueStructureController<StructureType>

    A mapped structure of application state value controllers.

    type ApplicationStateValueStructureController<
        StructureType extends Record<string, any>,
    > = {
        onChangeStructure: Record<keyof StructureType, (newValue: any) => void>;
        valueStructure: StructureType;
    }

    Type Parameters

    • StructureType extends Record<string, any>
    Index

    Properties

    onChangeStructure: Record<keyof StructureType, (newValue: any) => void>

    Per-field change handlers for the structure.

    valueStructure: StructureType

    The resolved value structure.