Files
ETB/ETB-FrontEnd/node_modules/@mui/x-data-grid/models/api/gridClipboardApi.d.ts
Iliyan Angelov 306b20e24a Frontend start
2025-09-14 00:54:48 +03:00

13 lines
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;
}