Files
klz-cables.com/.pnpm-store/v10/files/54/03bc5d4a82a5058a7c5ae292fd0d255fccbc7c8784475776aec83c788323f8f0e589643a2798a2c420742b708562af5d1a3dcdefac3b90ac091ee546d675ef
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

11 lines
271 B
Plaintext

import type { ErrorObject } from "../../types";
export declare enum DiscrError {
Tag = "tag",
Mapping = "mapping"
}
export type DiscrErrorObj<E extends DiscrError> = ErrorObject<"discriminator", {
error: E;
tag: string;
tagValue: unknown;
}, string>;