Skip to content
Snippets Groups Projects
route.model.ts 107 B
Newer Older
  • Learn to ignore specific revisions
  • Bastien DUMONT's avatar
    Bastien DUMONT committed
    export interface Route {
      label: string
      path: string
    }
    
    export interface Routes extends Array<Route> {}