From 68289087dea0af5491dbc4088431b5c8e2c9d60f Mon Sep 17 00:00:00 2001 From: Stepan Bolotnikov Date: Thu, 4 Dec 2025 16:48:36 +0200 Subject: [PATCH] fix nohighlight typescript declaration --- core/nohighlight.d.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/core/nohighlight.d.ts b/core/nohighlight.d.ts index 653f80fef..51a7f718a 100644 --- a/core/nohighlight.d.ts +++ b/core/nohighlight.d.ts @@ -10,6 +10,8 @@ declare module '@uiw/react-md-editor/nohighlight' { export * from '@uiw/react-md-editor/esm/Editor.nohighlight'; export * from '@uiw/react-md-editor/esm/Context'; export * from '@uiw/react-md-editor/esm/Types'; + export { default as handleKeyDown } from '@uiw/react-md-editor/esm/components/TextArea/handleKeyDown'; + export { default as shortcuts } from '@uiw/react-md-editor/esm/components/TextArea/shortcuts'; export { MarkdownUtil, commands }; export default MDEditor; }