Type alias BaseRoute<T>

BaseRoute<T>: {
    path?: Path;
    children?: BaseRoute<T>[];
} & Omit<T, "path" | "children">

Type Parameters

  • T = any

Type declaration

  • Optional path?: Path
  • Optional children?: BaseRoute<T>[]

Generated using TypeDoc