Rocky_Mountain_Vending/.pnpm-store/v10/files/0e/c83ce09434b478769f81d8b188cb4e08f97ffc19193c48ab4fb0200cdea2588ba3bb23adf0936fef9dc02512a93225227054bd597c84e125bc26c2bab2bb80
DMleadgen 46d973904b
Initial commit: Rocky Mountain Vending website
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>
2026-02-12 16:22:15 -07:00

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