Files
klz-cables.com/.pnpm-store/v10/files/56/a952fbff7302f39d5aef99c79104c6f0258bec30911ae20794c0525416d78cc140d10758e4ea08423cde1db00d6a026a8ca20172c1cf68fb1188cd1b097bfa
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
208 B
Plaintext

import { AnyArray } from "../any-array";
import { AnyRecord } from "../any-record";
export type StrictOmit<Type extends AnyRecord, Keys extends keyof Type> = Type extends AnyArray ? never : Omit<Type, Keys>;