Rocky_Mountain_Vending/.pnpm-store/v10/files/b2/23c0d497a9f81c67c1cee2b7a94aef7325caf43173faef80613280f0ed6a296745a4602388ba9ff6ce4887b109755223433da37c9564d0bb4368bb23d0319b
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

17 lines
449 B
Text

import type { MIMEType as MIMETypeT, MIMEParams as MIMEParamsT } from "node:util";
export declare class MIMEType implements MIMETypeT {
readonly __unenv__: true;
params;
type: string;
subtype: string;
constructor(input: string | {
toString: () => string
});
get essence();
toString();
}
export declare class MIMEParams extends Map<string, string> implements MIMEParamsT {
readonly __unenv__: true;
get(name: string): any;
toString();
}