UNPKG

@macrof/shared

Version:

React MicroFrontend Shared, Typescript, Webpack 5, ModuleFederation

14 lines (13 loc) 521 B
import { interfaces, Container } from 'inversify'; import { IHttpService, ILogger, Response, ILoader } from '../..'; import { AFactoryStore } from './factory/AFactoryStore'; import { IRootStore, RootInit } from '../interfaces'; export declare class RootStore extends AFactoryStore implements IRootStore { protected readonly rootContainer: interfaces.Container; logger: ILogger; http: IHttpService; process: Response; loader: ILoader; constructor(rootContainer: Container); init(): RootInit; }