Type alias ApplicationStateValueStructureController<StructureType>

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

A mapped structure of application state value controllers.

Type Parameters

  • StructureType extends Record<string, any>

Type declaration