Files
klz-cables.com/.pnpm-store/v10/files/3b/50c640665ef99fee4747fa4844ddc36a79c680832ae5382f7b0e193ba572592dd3b4b1446ecd24e595776d57e81dc07292c72dde8d757692a8d818674685ab
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

12 lines
500 B
Plaintext

type GetOptions = {
params?: Record<string, unknown>;
} & RequestInit;
export declare const requests: {
delete: (url: string, options?: RequestInit) => Promise<Response>;
get: (url: string, options?: GetOptions) => Promise<Response>;
patch: (url: string, options?: RequestInit) => Promise<Response>;
post: (url: string, options?: RequestInit) => Promise<Response>;
put: (url: string, options?: RequestInit) => Promise<Response>;
};
export {};
//# sourceMappingURL=api.d.ts.map