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>
20 lines
No EOL
762 B
Text
20 lines
No EOL
762 B
Text
import { Detector } from '../types';
|
|
import { ResourceDetectionConfig } from '../config';
|
|
import { IResource } from '../IResource';
|
|
/**
|
|
* EnvDetector can be used to detect the presence of and create a Resource
|
|
* from the OTEL_RESOURCE_ATTRIBUTES environment variable.
|
|
*/
|
|
declare class EnvDetector implements Detector {
|
|
/**
|
|
* Returns a {@link Resource} populated with attributes from the
|
|
* OTEL_RESOURCE_ATTRIBUTES environment variable. Note this is an async
|
|
* function to conform to the Detector interface.
|
|
*
|
|
* @param config The resource detection config
|
|
*/
|
|
detect(config?: ResourceDetectionConfig): Promise<IResource>;
|
|
}
|
|
export declare const envDetector: EnvDetector;
|
|
export {};
|
|
//# sourceMappingURL=EnvDetector.d.ts.map |