@mui/x-data-grid
Version:
The community edition of the data grid component (MUI X).
13 lines (12 loc) • 453 B
TypeScript
/**
* The Clipboard API interface that is available in the grid [[apiRef]].
*/
export interface GridClipboardApi {
/**
* Copies the selected rows to the clipboard.
* The fields will be separated by the TAB character.
* @param {boolean} includeHeaders Whether to include the headers or not. Default is `false`.
* @ignore - do not document.
*/
unstable_copySelectedRowsToClipboard: (includeHeaders?: boolean) => void;
}