import { PathOrParamsType } from "./PathParamsType"; export interface IController { [key: string]: any; } export interface IRouterPathConfig { target: any; method: string; path: PathOrParamsType; name: string; }