Files
klz-cables.com/.pnpm-store/v10/files/83/ed84e3b213883105560731357c5a0f66c988ca4f87c888429848a72ec4f479dab92b55c760f6975dad201ce654710e4f62b18c8c2f3761e3b7deb8e1c28f2a
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
241 B
Plaintext

import { IsFullyWritable } from "../is-fully-writable";
export type ReadonlyKeys<Type extends object> = Type extends unknown ? keyof {
[Key in keyof Type as IsFullyWritable<Pick<Type, Key>> extends true ? never : Key]: never;
} : never;