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
508 B
Text
13 lines
No EOL
508 B
Text
import { Detector } from '../../../types';
|
|
import { ResourceDetectionConfig } from '../../../config';
|
|
import { IResource } from '../../../IResource';
|
|
/**
|
|
* OSDetector detects the resources related to the operating system (OS) on
|
|
* which the process represented by this resource is running.
|
|
*/
|
|
declare class OSDetector implements Detector {
|
|
detect(_config?: ResourceDetectionConfig): Promise<IResource>;
|
|
}
|
|
export declare const osDetector: OSDetector;
|
|
export {};
|
|
//# sourceMappingURL=OSDetector.d.ts.map |