UNPKG

526 BTypeScriptView Raw
1import { HttpRouter } from "./router";
2import { Injector } from "@akala/core";
3import * as webpack from "webpack";
4import { Container } from "@akala/commands/src";
5export interface State {
6 pm: Container<void>;
7 mode?: 'production' | 'development';
8 assets: Injector;
9 masterRouter?: HttpRouter;
10 preAuthenticatedRouter?: HttpRouter;
11 authenticationRouter?: HttpRouter;
12 lateBoundRoutes?: HttpRouter;
13 app?: HttpRouter;
14 webpack: {
15 config: webpack.Configuration;
16 html: any;
17 };
18}