ParamNames
Home > @backstage/core-plugin-api
> ParamNames
Warning: This API is now obsolete.
this type is deprecated and will be removed in the future
Used in PathParams type declaration.
Signature:
export type ParamNames<S extends string> = S extends `${infer Part}/${infer Rest}` ? ParamPart<Part> | ParamNames<Rest> : ParamPart<S>;
References: ParamPart, ParamNames