export type ReplacePlaceholders = string extends TPath ? TPath : TPath extends `${infer Start}:${string}/${infer Rest}` ? `${Start}${string}/${ReplacePlaceholders}` : TPath extends `${infer Start}:${string}` ? `${Start}${string}` : TPath; //# sourceMappingURL=ReplacePlaceholders.d.ts.map