interface GridStateApi<State> {
    forceUpdate: (() => void);
    state: State;
}

Type Parameters

  • State extends GridStateCommunity

Hierarchy (view full)

Properties

Properties

forceUpdate: (() => void)

Forces the grid to rerender. It's often used after a state update.

no longer needed.

state: State

Property that contains the whole state of the grid.