Backstage
    Preparing search index...
    • Create a RouteRef from a route descriptor.

      Type Parameters

      • TParamKey extends string = never

      Parameters

      • Optionalconfig: { aliasFor?: string; params?: TParamKey[] }

        Description of the route reference to be created.

        • OptionalaliasFor?: string
        • Optional Readonlyparams?: TParamKey[]

          A list of parameter names that the path that this route ref is bound to must contain

      Returns RouteRef<
          [TParamKey] extends [never] ? undefined : { [param in string]: string },
      >