fix(core): update

This commit is contained in:
2020-11-30 10:14:22 +00:00
parent 50e14811d4
commit 76fcf14831
4 changed files with 22 additions and 12 deletions

View File

@ -11,8 +11,8 @@ export interface IRouterOptions {
export type THandlerFunction = <T extends object>(routeArg: IRouteInfo) => Promise<any>;
export interface IRouteInfo {
path: string;
index:number;
params: {[key: string]: string};
index: number;
params: { [key: string]: string };
}
/**