interface IRoute { name: string; path: string; } const routes: IRoute[] = [ {name: "home", path: "/"} ]; export default routes;