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>
10 lines
No EOL
569 B
Text
10 lines
No EOL
569 B
Text
import { InstrumentationAbstract } from '../../instrumentation';
|
|
import * as types from '../../types';
|
|
import { InstrumentationConfig } from '../../types';
|
|
/**
|
|
* Base abstract class for instrumenting web plugins
|
|
*/
|
|
export declare abstract class InstrumentationBase<ConfigType extends InstrumentationConfig = InstrumentationConfig> extends InstrumentationAbstract<ConfigType> implements types.Instrumentation<ConfigType> {
|
|
constructor(instrumentationName: string, instrumentationVersion: string, config: ConfigType);
|
|
}
|
|
//# sourceMappingURL=instrumentation.d.ts.map |