SYMBOL INDEX (54 symbols across 13 files) FILE: src/lib/AppsManager/AppsManager.ts class AppsManager (line 5) | class AppsManager { method constructor (line 10) | constructor() { method register (line 14) | register(microApp: MicroAppProvider | any) { method isDefinedBefore (line 38) | isDefinedBefore(microAppName: string): boolean { method subscribe (line 42) | subscribe(fn: (appList: MicroAppDef[]) => void) { method dispatch (line 46) | dispatch() { method checkDepsRunning (line 54) | private checkDepsRunning(microApp: MicroAppDef): boolean { method isCyclic (line 64) | private isCyclic(vertex: string, visited: BoolObj = {}, recStack: Bool... method addMicroAppToGraph (line 82) | private addMicroAppToGraph(microApp: MicroAppDef) { method runReadyMicroApps (line 96) | private runReadyMicroApps() { method updateMicroAppStatuses (line 114) | private updateMicroAppStatuses() { method provideDepsInstances (line 129) | private provideDepsInstances(microAppName: string, deps: string[]): { ... method generateAppScopedPath (line 141) | private generateAppScopedPath(microAppName: string): string { method generateMicroAppDef (line 147) | static generateMicroAppDef(microApp: MicroAppProvider): MicroAppDef { method generatePlaceholderMicroAppDef (line 156) | static generatePlaceholderMicroAppDef(name: string): MicroAppDef { FILE: src/lib/AppsManager/status.enum.ts type STATUS (line 1) | enum STATUS { FILE: src/lib/AppsManager/tag.enum.ts type TAG (line 1) | enum TAG { type TAG_TYPE (line 6) | enum TAG_TYPE { FILE: src/lib/Interfaces/AppsManager.interface.ts type MicroAppMeta (line 1) | interface MicroAppMeta { type MicroAppProvider (line 5) | interface MicroAppProvider extends MicroAppMeta { FILE: src/lib/Interfaces/AppsManager.internal.interface.ts type MicroAppDef (line 4) | interface MicroAppDef { type MicroAppsGraph (line 11) | interface MicroAppsGraph { type BoolObj (line 15) | interface BoolObj { type AnyObj (line 19) | interface AnyObj { FILE: src/lib/Interfaces/Config.interface.ts type ConfigInterface (line 1) | interface ConfigInterface { FILE: src/lib/Interfaces/Router.interface.ts type Route (line 1) | interface Route { type ResolvedRoute (line 8) | interface ResolvedRoute { FILE: src/lib/Loader/Loader.ts class Loader (line 10) | class Loader { method constructor (line 14) | constructor({AppsManager, Config}: {AppsManager: AppsManager, Config: ... method fetchMicroApp (line 20) | fetchMicroApp(microAppName: string) { method onNotFoundApp (line 27) | private onNotFoundApp(appList: MicroAppDef[]) { method injectJsToHead (line 36) | private static injectJsToHead(id: string, appUrl: string) { FILE: src/lib/Router/Link.ts class MicroLink (line 7) | class MicroLink { method constructor (line 8) | constructor({ MicroAppRouter }: { MicroAppRouter: MicroAppRouter }) { FILE: src/lib/Router/Router.ts class MicroAppRouter (line 7) | class MicroAppRouter { method constructor (line 12) | constructor({ Routes }: { Routes: Array }) { method navigate (line 21) | navigate(path: string, isSilent: boolean = false) { method onChange (line 35) | onChange(fn: (oldPath: string, newPath: string, resolvedRoute?: Resolv... method isActive (line 42) | isActive(pathToCheck: string): boolean { method changed (line 46) | private changed(resolvedRoute: ResolvedRoute) { method resolve (line 56) | private resolve(path: string): ResolvedRoute { method isHit (line 73) | private static isHit(route: Route, path: string): boolean { method pathToRegexp (line 77) | private static pathToRegexp(path: string): RegExp { method cleanPath (line 81) | private static cleanPath(path: string): string { FILE: src/lib/Router/RouterOutlet.ts class RouterOutlet (line 9) | class RouterOutlet { method constructor (line 10) | constructor({ Loader, MicroAppRouter }: { Loader: Loader; MicroAppRout... FILE: src/lib/Store/MicroAppStore.ts class MicroAppStore (line 6) | class MicroAppStore { method constructor (line 11) | constructor() { method applyReducers (line 15) | private applyReducers(state, action) { method addReducer (line 24) | public addReducer(reducerTreePiece) { method dispatch (line 32) | public dispatch(action: { type: string; payload?: any }) { method select (line 36) | public select(...selector) { FILE: src/main.ts class Main (line 3) | @Microfe({ method constructor (line 7) | constructor() {