Files
klz-cables.com/.pnpm-store/v10/files/f6/09a31ffbc9a5ebd0b809e02194eb7ff7e230b957716c54e9989ff6a20bdc88d2694d870a35f8bcd31b2bfb5472d79f278dbf932a1bd7fd5e3f26cca89d598b
Marc Mintel 5397309103
Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
fix(products): fix breadcrumbs and product filtering (backport from main)
2026-02-24 16:04:21 +01:00

5 lines
217 B
Plaintext

import { CamelCase } from "../camel-case";
export type DeepCamelCaseProperties<Type> = Type extends Record<string, unknown> ? {
[Key in keyof Type as CamelCase<Key>]: DeepCamelCaseProperties<Type[Key]>;
} : Type;