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>
13 lines
No EOL
504 B
Text
13 lines
No EOL
504 B
Text
import { TracerProvider, MeterProvider } from '@opentelemetry/api';
|
|
import { Instrumentation } from './types';
|
|
import { LoggerProvider } from '@opentelemetry/api-logs';
|
|
export interface AutoLoaderResult {
|
|
instrumentations: Instrumentation[];
|
|
}
|
|
export interface AutoLoaderOptions {
|
|
instrumentations?: (Instrumentation | Instrumentation[])[];
|
|
tracerProvider?: TracerProvider;
|
|
meterProvider?: MeterProvider;
|
|
loggerProvider?: LoggerProvider;
|
|
}
|
|
//# sourceMappingURL=types_internal.d.ts.map |