Rocky_Mountain_Vending/.pnpm-store/v10/files/fe/3b9da867a3bf904d916b0d807de4c6b86064f4657a36744a4b9911384a17ca2cf6dca1c9d11146660b421b1cc8c24137aa1bdd7b180f78994c92ed21ccf678
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

11 lines
416 B
Text

export interface TestReqInfo {
url: string;
proxyPort: number;
testData: string;
}
export interface TestRequestReader<R> {
url(req: R): string;
header(req: R, name: string): string | null;
}
export declare function withRequest<R, T>(req: R, reader: TestRequestReader<R>, fn: () => T): T;
export declare function getTestReqInfo<R>(req?: R, reader?: TestRequestReader<R>): TestReqInfo | undefined;