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>
13 lines
No EOL
555 B
Text
13 lines
No EOL
555 B
Text
import { DetectorSync } from '../../../types';
|
|
import { ResourceDetectionConfig } from '../../../config';
|
|
import { IResource } from '../../../IResource';
|
|
/**
|
|
* ProcessDetectorSync will be used to detect the resources related current process running
|
|
* and being instrumented from the NodeJS Process module.
|
|
*/
|
|
declare class ProcessDetectorSync implements DetectorSync {
|
|
detect(_config?: ResourceDetectionConfig): IResource;
|
|
}
|
|
export declare const processDetectorSync: ProcessDetectorSync;
|
|
export {};
|
|
//# sourceMappingURL=ProcessDetectorSync.d.ts.map |