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