Files
klz-cables.com/.pnpm-store/v10/files/10/b76b91f2f1af10d1bddc010f1a926cfd454204d5349a66cf5d37df3e8821715a618602f2f18e57dfb3059b5301e481d6a36b690a870af4b7e7498fc63927f7
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

46 lines
1.5 KiB
Plaintext

import { Context } from '@opentelemetry/api';
import { AbstractAsyncHooksContextManager } from './AbstractAsyncHooksContextManager';
/**
* @deprecated Use AsyncLocalStorageContextManager instead.
*/
export declare class AsyncHooksContextManager extends AbstractAsyncHooksContextManager {
private _asyncHook;
private _contexts;
private _stack;
constructor();
active(): Context;
with<A extends unknown[], F extends (...args: A) => ReturnType<F>>(context: Context, fn: F, thisArg?: ThisParameterType<F>, ...args: A): ReturnType<F>;
enable(): this;
disable(): this;
/**
* Init hook will be called when userland create a async context, setting the
* context as the current one if it exist.
* @param uid id of the async context
* @param type the resource type
*/
private _init;
/**
* Destroy hook will be called when a given context is no longer used so we can
* remove its attached context.
* @param uid uid of the async context
*/
private _destroy;
/**
* Before hook is called just before executing a async context.
* @param uid uid of the async context
*/
private _before;
/**
* After hook is called just after completing the execution of a async context.
*/
private _after;
/**
* Set the given context as active
*/
private _enterContext;
/**
* Remove the context at the root of the stack
*/
private _exitContext;
}
//# sourceMappingURL=AsyncHooksContextManager.d.ts.map