Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/alita/examples/pro/config/routes.ts>default

A React framework based on umi.
Go to Latest
variable default
import { default } from "https://deno.land/x/alita@v3.3.11/examples/pro/config/routes.ts";

type

| { path: string; layout: boolean; routes: { name: string; path: string; component: string; }[]; }
| { path: string; name: string; icon: string; component: string; }
| { path: string; name: string; icon: string; access: string; routes: { path: string; redirect: string; } | { path: string; name: string; component: string; }[]; }
| { name: string; icon: string; path: string; component: string; }
| { path: string; redirect: string; }
| { path: string; layout: boolean; component: string; }
[]