Files
klz-cables.com/.pnpm-store/v10/files/3e/14078c6d361a96596a2c0567da24e8bd01011302ec8f02ce1b929d7cc8dcd3eddba22f2f664e9ece970d6fcaf69af27f2bdf1f70df392aeaecb9c94c612d55
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
551 B
Plaintext

import { RequestOptions, RequestTransformer, ResponseTransformer } from "../types/request.js";
//#region src/rest/types.d.ts
interface RestCommand<_Output extends object | unknown, _Schema> {
(): RequestOptions;
}
interface RestClient<Schema> {
request<Output>(options: RestCommand<Output, Schema>): Promise<Output>;
}
interface RestConfig {
credentials?: RequestCredentials;
onRequest?: RequestTransformer;
onResponse?: ResponseTransformer;
}
//#endregion
export { RestClient, RestCommand, RestConfig };
//# sourceMappingURL=types.d.ts.map