Rocky_Mountain_Vending/.pnpm-store/v10/files/f9/cc2d43e107b6ded7c2c269e98dfe59f10498d888c1d58f0be5f20ff8f5892e1f561b4471e0440e6e4fef19f14ae8ecf0e1cf04def47565f079248a6fecc506
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

18 lines
No EOL
839 B
Text

import { ResourceDetectionConfig } from './config';
import { IResource } from './IResource';
/**
* Runs all resource detectors and returns the results merged into a single Resource. Promise
* does not resolve until all the underlying detectors have resolved, unlike
* detectResourcesSync.
*
* @deprecated use detectResourcesSync() instead.
* @param config Configuration for resource detection
*/
export declare const detectResources: (config?: ResourceDetectionConfig) => Promise<IResource>;
/**
* Runs all resource detectors synchronously, merging their results. In case of attribute collision later resources will take precedence.
*
* @param config Configuration for resource detection
*/
export declare const detectResourcesSync: (config?: ResourceDetectionConfig) => IResource;
//# sourceMappingURL=detect-resources.d.ts.map