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
449 B
Text
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();
|
|
}
|