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>
18 lines
No EOL
839 B
Text
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 |