UNPKG

374 BTypeScriptView Raw
1import "../../";
2
3declare module "../../" {
4 interface EditorConfiguration {
5 /**
6 * Controls the mouse cursor appearance when hovering over the selection. It can be set to a string, like "pointer", or to true,
7 * in which case the "default" (arrow) cursor will be used.
8 */
9 selectionPointer?: boolean | string | undefined;
10 }
11}