Files
klz-cables.com/.pnpm-store/v10/files/86/b9543348739ff7044189c9484e8de6af64ce38eaf475b28c78d72a3d44ed373e554a29045dd6eb18e95a6373bef815b5a626f6209c7e42f65d6fe5f3062ee6
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
344 B
Plaintext

import { DirectusError } from "../types/error.js";
//#region src/utils/is-directus-error.d.ts
/**
* A type guard to check if an error is a Directus API error
*/
declare function isDirectusError<R = Response>(error: unknown): error is DirectusError<R>;
//#endregion
export { isDirectusError };
//# sourceMappingURL=is-directus-error.d.ts.map