UNPKG

@primno/core

Version:

Front-end framework for Model-Driven Apps of Power Apps and Dynamics 365.

17 lines (16 loc) 483 B
import { ModuleConstructor } from "../../../typing/module"; import { Container, Middleware } from "./container"; /** * Create the root module container. */ export declare class RootContainer { private _container; get container(): Container; constructor(moduleType: ModuleConstructor); /** * Middleware will be executed left to right. * @param middleware Middleware */ applyMiddleware(...middleware: Middleware[]): void; private bindModule; }