diff --git a/src/modules/Content/index.ts b/src/modules/Content/index.ts index 21585a1..a417f22 100644 --- a/src/modules/Content/index.ts +++ b/src/modules/Content/index.ts @@ -30,10 +30,10 @@ export const Content = { Root: ContentRoot, } -export { +export type { /** * @deprecated use ContentRootProps instead */ - type ContentRootProps as ContentProps, - type ContentRootProps, + ContentRootProps as ContentProps, + ContentRootProps, } from './ContentRoot' diff --git a/src/modules/Shell/index.ts b/src/modules/Shell/index.ts index 32d9195..f6e5e45 100644 --- a/src/modules/Shell/index.ts +++ b/src/modules/Shell/index.ts @@ -37,14 +37,14 @@ export const Shell = { Root: ShellRoot, } -export { +export type { /** * @deprecated use `ShellRootProps` instead */ - type ShellContainerProps as ShellProps, + ShellContainerProps as ShellProps, /** * @deprecated use `ShellRootProps` instead */ - type ShellContainerProps as ShellProviderProps, - type ShellRootProps, + ShellContainerProps as ShellProviderProps, + ShellRootProps, } from './ShellRoot'