UNPKG

@mui/x-data-grid

Version:

The community edition of the data grid component (MUI X).

6 lines (5 loc) 259 B
export type ControllablePromise<T = unknown> = Promise<T> & { resolve: T extends unknown ? (value?: T) => void : (value: T) => void; reject: (reason?: any) => void; }; export declare function createControllablePromise(): ControllablePromise<unknown>;