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>
14 lines
No EOL
529 B
Text
14 lines
No EOL
529 B
Text
import type { Carrier } from './../carrier';
|
|
import type { AsyncContextStrategy } from './types';
|
|
/**
|
|
* @private Private API with no semver guarantees!
|
|
*
|
|
* Sets the global async context strategy
|
|
*/
|
|
export declare function setAsyncContextStrategy(strategy: AsyncContextStrategy | undefined): void;
|
|
/**
|
|
* Get the current async context strategy.
|
|
* If none has been setup, the default will be used.
|
|
*/
|
|
export declare function getAsyncContextStrategy(carrier: Carrier): AsyncContextStrategy;
|
|
//# sourceMappingURL=index.d.ts.map |