Rocky_Mountain_Vending/.pnpm-store/v10/files/04/6d836a2d87225c4221ecba2d3dc1047d16915bec209126274e867a4424cf276b74f641fa1d820381bdee566d0dc30f9e3ed085570219c629df7611763c03c6
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

43 lines
1.3 KiB
Text

export interface ProxyServer {
readonly port: number;
fetchWith(input: string | URL, init?: RequestInit, testData?: string): Promise<Response>;
close(): void;
}
interface ProxyRequestBase {
testData: string;
api: string;
}
interface ProxyResponseBase {
api: string;
}
export interface ProxyUnhandledResponse extends ProxyResponseBase {
api: 'unhandled';
}
export interface ProxyAbortResponse extends ProxyResponseBase {
api: 'abort';
}
export interface ProxyContinueResponse extends ProxyResponseBase {
api: 'continue';
}
export interface ProxyFetchRequest extends ProxyRequestBase {
api: 'fetch';
request: {
url: string;
headers: Array<[string, string]>;
body: string | null;
} & Omit<RequestInit, 'headers' | 'body'>;
}
export interface ProxyFetchResponse extends ProxyResponseBase {
api: 'fetch';
response: {
status: number;
headers: Array<[string, string]>;
body: string | null;
};
}
export type ProxyRequest = ProxyFetchRequest;
export type ProxyResponse = ProxyUnhandledResponse | ProxyAbortResponse | ProxyContinueResponse | ProxyFetchResponse;
export declare const ABORT: ProxyResponse;
export declare const CONTINUE: ProxyResponse;
export declare const UNHANDLED: ProxyResponse;
export {};