UNPKG

@mui/x-data-grid

Version:

The Community plan edition of the Data Grid components (MUI X).

11 lines 291 B
type Listener<T> = (value: T) => void; export declare class Store<T> { value: T; listeners: Set<Listener<T>>; static create<T>(value: T): Store<T>; constructor(value: T); subscribe: (fn: Listener<T>) => () => void; getSnapshot: () => T; update: (value: T) => void; } export {};