Rocky_Mountain_Vending/.pnpm-store/v10/files/2a/015930860390ce808612a32634d929b1521c800e90f1fcea5d6405a4913f9e4db4e8b508d9f1e0e6bc403c05152cdcb4ded63e6d8bcaa44c894be8d75da1e9
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

23 lines
No EOL
862 B
Text

import { ResourceDetectionConfig } from './config';
import { SpanAttributes } from '@opentelemetry/api';
import { IResource } from './IResource';
/**
* Interface for Resource attributes.
* General `Attributes` interface is added in api v1.1.0.
* To backward support older api (1.0.x), the deprecated `SpanAttributes` is used here.
*/
export declare type ResourceAttributes = SpanAttributes;
/**
* @deprecated please use {@link DetectorSync}
*/
export interface Detector {
detect(config?: ResourceDetectionConfig): Promise<IResource>;
}
/**
* Interface for a synchronous Resource Detector. In order to detect attributes asynchronously, a detector
* can pass a Promise as the second parameter to the Resource constructor.
*/
export interface DetectorSync {
detect(config?: ResourceDetectionConfig): IResource;
}
//# sourceMappingURL=types.d.ts.map