Files
klz-cables.com/.pnpm-store/v10/files/aa/7438f84f41c97bfb5af59e035f4b58f52e71a33eced41b1badc5257edb3f5a68cc90ed8284fa7f2881b1e51eaa57908164ea97b29361d2ef8d1bb50ddea0e3
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

4 lines
106 B
Plaintext

export type Prettify<Type> = Type extends Function ? Type : {
[Key in keyof Type]: Type[Key];
} & {};