@mui/x-data-grid
Version:
The community edition of the data grid component (MUI X).
13 lines (12 loc) • 337 B
TypeScript
import { Logger } from '../logger';
/**
* The logger API interface that is available in the grid `apiRef`.
*/
export interface GridLoggerApi {
/**
* @param {string} name The name of the logger
* @returns {Logger} Instance of the logger
* @ignore - do not document.
*/
getLogger: (name: string) => Logger;
}