From 4d2ec444b4f8ce162021b929e811898a80c09762 Mon Sep 17 00:00:00 2001 From: Anna No Date: Wed, 11 Oct 2023 22:26:36 +0700 Subject: [PATCH] fix exports causing uberflow warnings (#3827) Signed-off-by: Anna No --- packages/text-editor/src/index.ts | 19 ++++++++++++------- 1 file changed, 12 insertions(+), 7 deletions(-) diff --git a/packages/text-editor/src/index.ts b/packages/text-editor/src/index.ts index 0c16b00f36..47e941d40e 100644 --- a/packages/text-editor/src/index.ts +++ b/packages/text-editor/src/index.ts @@ -33,20 +33,25 @@ export * from './types' export { IsEmptyContentExtension, - IsEmptyContentOptions, - IsEmptyContentStorage + type IsEmptyContentOptions, + type IsEmptyContentStorage } from './components/extension/isEmptyContent' export { NodeHighlightExtension, - NodeHighlightExtensionOptions, - NodeHighlightType + NodeHighlightType, + type NodeHighlightExtensionOptions } from './components/extension/nodeHighlight' -export { NodeUuidCommands, NodeUuidExtension, NodeUuidOptions, NodeUuidStorage } from './components/extension/nodeUuid' +export { + NodeUuidExtension, + type NodeUuidCommands, + type NodeUuidOptions, + type NodeUuidStorage +} from './components/extension/nodeUuid' export { InlinePopupExtension } from './components/extension/inlinePopup' export { InlineStyleToolbarExtension, - InlineStyleToolbarOptions, - InlineStyleToolbarStorage + type InlineStyleToolbarOptions, + type InlineStyleToolbarStorage } from './components/extension/inlineStyleToolbar' export { textEditorId }