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
473 B
Text
11 lines
No EOL
473 B
Text
import { Meter, MeterOptions } from './Meter';
|
|
import { MeterProvider } from './MeterProvider';
|
|
/**
|
|
* An implementation of the {@link MeterProvider} which returns an impotent Meter
|
|
* for all calls to `getMeter`
|
|
*/
|
|
export declare class NoopMeterProvider implements MeterProvider {
|
|
getMeter(_name: string, _version?: string, _options?: MeterOptions): Meter;
|
|
}
|
|
export declare const NOOP_METER_PROVIDER: NoopMeterProvider;
|
|
//# sourceMappingURL=NoopMeterProvider.d.ts.map |