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>
20 lines
No EOL
776 B
Text
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 |