Rocky_Mountain_Vending/.pnpm-store/v10/files/4c/ed61292355fbc1695c084a78c99b3ba9b263b817f75ba7696e8c49d3de8262772869c3cab2b108c31a0913f7a416a56a2f7c275ea02cc46f55b3da04b3f39e
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

20 lines
No EOL
776 B
Text

import { DetectorSync } from '../types';
import { ResourceDetectionConfig } from '../config';
import { IResource } from '../IResource';
/**
* BrowserDetectorSync will be used to detect the resources related to browser.
*/
declare class BrowserDetectorSync implements DetectorSync {
detect(config?: ResourceDetectionConfig): IResource;
/**
* Validates process resource attribute map from process variables
*
* @param browserResource The un-sanitized resource attributes from process as key/value pairs.
* @param config: Config
* @returns The sanitized resource attributes.
*/
private _getResourceAttributes;
}
export declare const browserDetectorSync: BrowserDetectorSync;
export {};
//# sourceMappingURL=BrowserDetectorSync.d.ts.map