Files
klz-cables.com/.pnpm-store/v10/files/a3/1862882d909fff07d36e124f1aea79ffcacc31b66735bde122e0f8a3dd78071efde8d0f03c285491e50434c866401cb14601bb7a2c7f94ab65ac517f0e9dfa
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
899 B
Plaintext

interface Options {
formData?: FormData;
/**
* Headers as returned from `headers()`.
*
* Currently accepts both a plain `Headers` object and `Promise<ReadonlyHeaders>` to be compatible with async APIs introduced in Next.js 15: https://github.com/vercel/next.js/pull/68812
*/
headers?: Headers | Promise<any>;
/**
* Whether the server action response should be included in any events captured within the server action.
*/
recordResponse?: boolean;
}
export declare function withServerActionInstrumentation<A extends (...args: any[]) => any>(serverActionName: string, callback: A): Promise<ReturnType<A>>;
export declare function withServerActionInstrumentation<A extends (...args: any[]) => any>(serverActionName: string, options: Options, callback: A): Promise<ReturnType<A>>;
export {};
//# sourceMappingURL=withServerActionInstrumentation.d.ts.map