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