Skip to content

Commit 4c21733

Browse files
committed
fix base index.ts
1 parent e3a4a05 commit 4c21733

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

packages/base/src/index.ts

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,13 @@ import { I18nStore } from './stores/I18nStore.js';
55
import { StyleStore } from './stores/StyleStore.js';
66
import { ThemingParameters } from './styling/ThemingParameters.js';
77
import { withWebComponent } from './wrapper/withWebComponent.js';
8+
import type { WithWebComponentPropTypes } from './wrapper/withWebComponent.js';
89

9-
export * from './hooks/index.js';
1010
export * from './styling/CssSizeVariables.js';
1111
export * from './utils/index.js';
12+
export * from './hooks/index.js';
13+
export type * from './types/index.js';
1214

13-
export { Device, hooks, I18nStore, StyleStore, ThemingParameters, withWebComponent };
15+
export { I18nStore, StyleStore, ThemingParameters, Device, hooks, withWebComponent };
16+
export type { WithWebComponentPropTypes };
1417
export const version = VersionInfo.version;

0 commit comments

Comments
 (0)