Skip to content

Commit ea538c0

Browse files
committed
use any instead of unknown
1 parent 953ae9e commit ea538c0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/jupyterlab-lsp/src/editor_integration/codemirror.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ export abstract class CodeMirrorIntegration
100100
// TODO use better type constraints for connection event names and for responses
101101
protected readonly connection_handlers: Map<
102102
string,
103-
(response: Record<string, unknown>) => void
103+
(response: Record<string, any>) => void
104104
>;
105105
protected readonly wrapper_handlers: IHTMLEventMap;
106106
protected wrapper: HTMLElement;

0 commit comments

Comments
 (0)