File tree Expand file tree Collapse file tree 1 file changed +15
-8
lines changed Expand file tree Collapse file tree 1 file changed +15
-8
lines changed Original file line number Diff line number Diff line change 1
- export * from './components/Map' ;
2
- export * from './components/Marker' ;
3
- export * from './components/StyleLoadFinish' ;
4
- export * from './components/Source' ;
5
- export * from './components/Layer' ;
6
- export * from './components/MarkerCluster' ;
7
- export * from './components/WorldView' ;
8
- export * from './hooks/useMap' ;
1
+ export { Map } from './components/Map' ;
2
+ export type { MapProps } from './components/Map' ;
3
+ export { Marker } from './components/Marker' ;
4
+ export type { MarkerProps } from './components/Marker' ;
5
+ export { StyleLoadFinish } from './components/StyleLoadFinish' ;
6
+ export type { StyleLoadFinishProps } from './components/StyleLoadFinish' ;
7
+ export { Source } from './components/Source' ;
8
+ export type { SourceProps } from './components/Source' ;
9
+ export { Layer } from './components/Layer' ;
10
+ export type { LayerProps } from './components/Layer' ;
11
+ export { MarkerCluster } from './components/MarkerCluster' ;
12
+ export type { MarkerClusterProps } from './components/MarkerCluster' ;
13
+ export { WorldView } from './components/WorldView' ;
14
+ export type { WorldViewProps } from './components/WorldView' ;
15
+ export { useMap } from './hooks/useMap' ;
You can’t perform that action at this time.
0 commit comments