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
496 B
Text
13 lines
No EOL
496 B
Text
import { Tracer } from './tracer';
|
|
import { TracerOptions } from './tracer_options';
|
|
import { TracerProvider } from './tracer_provider';
|
|
/**
|
|
* An implementation of the {@link TracerProvider} which returns an impotent
|
|
* Tracer for all calls to `getTracer`.
|
|
*
|
|
* All operations are no-op.
|
|
*/
|
|
export declare class NoopTracerProvider implements TracerProvider {
|
|
getTracer(_name?: string, _version?: string, _options?: TracerOptions): Tracer;
|
|
}
|
|
//# sourceMappingURL=NoopTracerProvider.d.ts.map |