Files
klz-cables.com/.pnpm-store/v10/files/de/1530caab749c791d3fd23a12f5358e1cce3505a9c2d15bf50a36722f8e0ed075a1a90160de176f60cadfef6a8e4737fb969d8836bdbff9a3079524a73ad738
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

17 lines
357 B
Plaintext

//#region src/types/error.d.ts
interface DirectusApiError {
message: string;
extensions: {
code: string;
[key: string]: any;
};
}
interface DirectusError<R = Response> {
message: string;
errors: DirectusApiError[];
response: R;
data?: any;
}
//#endregion
export { DirectusApiError, DirectusError };
//# sourceMappingURL=error.d.cts.map