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

3 lines
137 B
Plaintext

import { IsAny } from "../is-any";
export type IsUnknown<Type> = IsAny<Type> extends true ? false : unknown extends Type ? true : false;