* ✨ remove global way for recording current running sandbox to support parallel multiple instance *✨ export internal getCurrentRunningApp API Co-authored-by: tli4 <a@tianyi.li>
13 lines
401 B
TypeScript
13 lines
401 B
TypeScript
/**
|
|
* @author Kuitos
|
|
* @since 2019-04-25
|
|
*/
|
|
|
|
export { loadMicroApp, registerMicroApps, start } from './apis';
|
|
export { initGlobalState } from './globalState';
|
|
export { getCurrentRunningApp as __internalGetCurrentRunningApp } from './sandbox';
|
|
export * from './errorHandler';
|
|
export * from './effects';
|
|
export * from './interfaces';
|
|
export { prefetchImmediately as prefetchApps } from './prefetch';
|