Files
klz-cables.com/.pnpm-store/v10/files/9c/a4ee87e4684e5f9bf99afc470562a23898c674d2b2f073b3a84d9f9cb88482e702e073a50d9f69b8e0f3d3da562181381313ab65e2973b96f261273cf61be1
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
159 B
Plaintext

import { AsyncOrSync } from "../async-or-sync";
export type AsyncOrSyncType<AsyncOrSyncType> = AsyncOrSyncType extends AsyncOrSync<infer Type> ? Type : never;