Next.js website for Rocky Mountain Vending company featuring: - Product catalog with Stripe integration - Service areas and parts pages - Admin dashboard with Clerk authentication - SEO optimized pages with JSON-LD structured data Co-authored-by: Cursor <cursoragent@cursor.com>
11 lines
No EOL
563 B
Text
11 lines
No EOL
563 B
Text
import { Context } from '@opentelemetry/api';
|
|
import { AbstractAsyncHooksContextManager } from './AbstractAsyncHooksContextManager';
|
|
export declare class AsyncLocalStorageContextManager extends AbstractAsyncHooksContextManager {
|
|
private _asyncLocalStorage;
|
|
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;
|
|
}
|
|
//# sourceMappingURL=AsyncLocalStorageContextManager.d.ts.map |