We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9c48460 commit f6487d7Copy full SHA for f6487d7
1 file changed
types/codemirror/codemirror-tests.ts
@@ -7,12 +7,11 @@ const c = CodeMirror.findModeByFileName('foo');
7
const d = CodeMirror.findModeByName('foo');
8
declare var editor: CodeMirror.Editor;
9
editor.on('cut', (instance, event) => {
10
- event.clipboardData
11
-})
+ event.clipboardData;
+});
12
editor.on('copy', (instance, event) => {
13
14
15
editor.on('paste', (instance, event) => {
16
17
18
-
0 commit comments