Files
klz-cables.com/.pnpm-store/v10/files/a2/f8d4c5cb04df458c441f88f9306fbff50d4f0c6983d6b36dc033ab80d7e45231d31d9ef337a60794b069c0c1c05614a52c91016cb35fa7c773229f901908d8
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

7 lines
188 B
Plaintext

export type Prettify<T> = {
[K in keyof T]: T[K];
} & {};
export type DeepPartial<Type> = {
[Key in keyof Type]?: Type[Key] extends object ? DeepPartial<Type[Key]> : Type[Key];
};