stupa-pdf-api/frontend/node_modules/@mui/x-data-grid/models/api/gridCallbackDetails.d.ts

11 lines
349 B
TypeScript

import { GridControlledStateReasonLookup } from '../events/gridEventLookup';
/**
* Additional details passed to the callbacks
*/
export interface GridCallbackDetails<K extends keyof GridControlledStateReasonLookup = any> {
/**
* The reason for this callback to have been called.
*/
reason?: GridControlledStateReasonLookup[K];
}