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>
10 lines
439 B
Text
10 lines
439 B
Text
import type { ServerResponse } from 'http';
|
|
export declare const middlewareResponse: {
|
|
noContent(res: ServerResponse): void;
|
|
badRequest(res: ServerResponse): void;
|
|
notFound(res: ServerResponse): void;
|
|
methodNotAllowed(res: ServerResponse): void;
|
|
internalServerError(res: ServerResponse, error?: unknown): void;
|
|
json(res: ServerResponse, data: any): void;
|
|
jsonString(res: ServerResponse, data: string): void;
|
|
};
|