Skip to content

Commit 7d85e7a

Browse files
committed
chore(utils): properly export types
We need to explicitly mark type export or else it can break the Storybook build
1 parent fe61379 commit 7d85e7a

File tree

1 file changed

+17
-17
lines changed
  • packages/lumx-react/src/utils/type

1 file changed

+17
-17
lines changed
Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
1-
export { Callback } from './Callback';
2-
export { Comp } from './Comp';
3-
export { ComponentRef } from './ComponentRef';
4-
export { Falsy } from './Falsy';
5-
export { GenericProps } from './GenericProps';
6-
export { HasAriaLabelOrLabelledBy } from './HasAriaLabelOrLabelledBy';
7-
export { HasClassName } from './HasClassName';
8-
export { HasCloseMode } from './HasCloseMode';
9-
export { HasPolymorphicAs } from './HasPolymorphicAs';
10-
export { HasTheme } from './HasTheme';
11-
export { HeadingElement } from './HeadingElement';
1+
export type { Callback } from './Callback';
2+
export type { Comp } from './Comp';
3+
export type { ComponentRef } from './ComponentRef';
4+
export type { Falsy } from './Falsy';
5+
export type { GenericProps } from './GenericProps';
6+
export type { HasAriaLabelOrLabelledBy } from './HasAriaLabelOrLabelledBy';
7+
export type { HasClassName } from './HasClassName';
8+
export type { HasCloseMode } from './HasCloseMode';
9+
export type { HasPolymorphicAs } from './HasPolymorphicAs';
10+
export type { HasTheme } from './HasTheme';
11+
export type { HeadingElement } from './HeadingElement';
1212
export { isComponent } from './isComponent';
1313
export { isComponentType } from './isComponentType';
14-
export { MaybeElementOrRef } from './MaybeElementOrRef';
15-
export { Point } from './Point';
16-
export { Predicate } from './Predicate';
17-
export { RectSize } from './RectSize';
18-
export { TextElement } from './TextElement';
19-
export { ValueOf } from './ValueOf';
14+
export type { MaybeElementOrRef } from './MaybeElementOrRef';
15+
export type { Point } from './Point';
16+
export type { Predicate } from './Predicate';
17+
export type { RectSize } from './RectSize';
18+
export type { TextElement } from './TextElement';
19+
export type { ValueOf } from './ValueOf';

0 commit comments

Comments
 (0)