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>
15 lines
No EOL
744 B
Text
15 lines
No EOL
744 B
Text
import { KoaLayerType, KoaInstrumentationConfig } from './types';
|
|
import { KoaContext, KoaMiddleware } from './internal-types';
|
|
import { Attributes } from '@opentelemetry/api';
|
|
export declare const getMiddlewareMetadata: (context: KoaContext, layer: KoaMiddleware, isRouter: boolean, layerPath?: string | RegExp | undefined) => {
|
|
attributes: Attributes;
|
|
name: string;
|
|
};
|
|
/**
|
|
* Check whether the given request is ignored by configuration
|
|
* @param [list] List of ignore patterns
|
|
* @param [onException] callback for doing something when an exception has
|
|
* occurred
|
|
*/
|
|
export declare const isLayerIgnored: (type: KoaLayerType, config?: KoaInstrumentationConfig<any, any> | undefined) => boolean;
|
|
//# sourceMappingURL=utils.d.ts.map |