UNPKG

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