File tree Expand file tree Collapse file tree 2 files changed +9
-1
lines changed
packages/bridge/bridge-react/src Expand file tree Collapse file tree 2 files changed +9
-1
lines changed Original file line number Diff line number Diff line change 77 createRemoteComponent ,
88 createRemoteAppComponent ,
99} from './remote/create' ;
10+ export type { LazyRemoteComponentInfo } from './remote/create' ;
1011export {
1112 ERROR_TYPE ,
1213 createLazyComponent ,
@@ -34,6 +35,10 @@ export type {
3435 RootType ,
3536 DestroyParams ,
3637 RenderParams ,
38+ RemoteComponentParams ,
39+ RenderFnParams ,
40+ RemoteComponentProps ,
41+ RemoteModule ,
3742} from './types' ;
3843export type {
3944 DataFetchParams ,
Original file line number Diff line number Diff line change @@ -8,7 +8,10 @@ import {
88 RemoteModule ,
99} from '../types' ;
1010
11- type LazyRemoteComponentInfo < T , _E extends keyof T > = RemoteComponentParams < T > ;
11+ export type LazyRemoteComponentInfo <
12+ T ,
13+ _E extends keyof T ,
14+ > = RemoteComponentParams < T > ;
1215
1316function createLazyRemoteComponent <
1417 T = Record < string , unknown > ,
You can’t perform that action at this time.
0 commit comments