-
Notifications
You must be signed in to change notification settings - Fork 723
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: explicit type exports in @visx/responsive (#1809)
- Loading branch information
1 parent
1bb1d1a
commit e0d11b7
Showing
1 changed file
with
8 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,10 @@ | ||
export { default as ParentSize } from './components/ParentSize'; | ||
export { default as ScaleSVG } from './components/ScaleSVG'; | ||
export { default as withParentSize, WithParentSizeProvidedProps } from './enhancers/withParentSize'; | ||
export { default as withScreenSize, WithScreenSizeProvidedProps } from './enhancers/withScreenSize'; | ||
export { default as useParentSize, UseParentSizeConfig } from './hooks/useParentSize'; | ||
export { default as useScreenSize, UseScreenSizeConfig } from './hooks/useScreenSize'; | ||
export { default as withParentSize } from './enhancers/withParentSize'; | ||
export type { WithParentSizeProvidedProps } from './enhancers/withParentSize'; | ||
export { default as withScreenSize } from './enhancers/withScreenSize'; | ||
export type { WithScreenSizeProvidedProps } from './enhancers/withScreenSize'; | ||
export { default as useParentSize } from './hooks/useParentSize'; | ||
export type { UseParentSizeConfig } from './hooks/useParentSize'; | ||
export { default as useScreenSize } from './hooks/useScreenSize'; | ||
export type { UseScreenSizeConfig } from './hooks/useScreenSize'; |