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>
17 lines
519 B
Text
17 lines
519 B
Text
import { Provider } from "@smithy/types";
|
|
/**
|
|
* @public
|
|
*/
|
|
export interface LocationConstraintInputConfig {
|
|
}
|
|
interface PreviouslyResolved {
|
|
region: Provider<string>;
|
|
}
|
|
export interface LocationConstraintResolvedConfig {
|
|
/**
|
|
* Resolved value for input config {@link RegionInputConfig.region}
|
|
*/
|
|
region: Provider<string>;
|
|
}
|
|
export declare function resolveLocationConstraintConfig<T>(input: T & LocationConstraintInputConfig & PreviouslyResolved): T & LocationConstraintResolvedConfig;
|
|
export {};
|