Handle to publish updates and unregister a state inspector.
export interface StateInspectorHandle<T> { publish: (value: T) => void; unregister: () => void;} Copy
export interface StateInspectorHandle<T> { publish: (value: T) => void; unregister: () => void;}
The type of state being inspected.
Handle to publish updates and unregister a state inspector.
Source