UNPKG

@mui/x-data-grid

Version:

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

5 lines 254 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>;