From 3cc78f6c63494307044262f83950efaff30102de Mon Sep 17 00:00:00 2001 From: Shahriar Shojib Date: Sat, 30 Sep 2023 20:35:31 +0600 Subject: [PATCH] remove unnecessary exports --- packages/common/src/index.tsx | 1 - packages/core/src/types/plugin/PlatePlugin.ts | 2 -- packages/core/src/utils/pluginInjectProps.ts | 2 -- 3 files changed, 5 deletions(-) diff --git a/packages/common/src/index.tsx b/packages/common/src/index.tsx index 9c711e6509..1a8b72bb46 100644 --- a/packages/common/src/index.tsx +++ b/packages/common/src/index.tsx @@ -4,4 +4,3 @@ export * from '@udecode/slate'; export * from '@udecode/slate-react'; export * from '@udecode/slate-utils'; export * from '@udecode/utils'; -export type { AnyObject } from '@udecode/utils'; diff --git a/packages/core/src/types/plugin/PlatePlugin.ts b/packages/core/src/types/plugin/PlatePlugin.ts index a6defa00db..413c0eca45 100644 --- a/packages/core/src/types/plugin/PlatePlugin.ts +++ b/packages/core/src/types/plugin/PlatePlugin.ts @@ -223,5 +223,3 @@ export type WithPlatePlugin< PlatePlugin, 'type' | 'options' | 'inject' | 'editor' >; - -export type { AnyObject } from '@udecode/utils'; diff --git a/packages/core/src/utils/pluginInjectProps.ts b/packages/core/src/utils/pluginInjectProps.ts index 5dd526e517..e7656e8c92 100644 --- a/packages/core/src/utils/pluginInjectProps.ts +++ b/packages/core/src/utils/pluginInjectProps.ts @@ -119,5 +119,3 @@ export const pluginInjectProps = ( return res; }; - -export type { AnyObject } from '@udecode/utils';