Rocky_Mountain_Vending/.pnpm-store/v10/files/92/1c05133eb2bfd3d9db7ff0bd6550601a9ea29cc078744374d0343a937086ec69f6dfdf50dae545432156d323bb6a2215c1cbc6d24a1c97571f3b9c25c86357
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

28 lines
898 B
Text

export declare const enum MimeType {
HTML = "text/html",
XML = "text/xml",
PLAIN = "text/plain",
XHTML = "application/xhtml+xml",
SVG = "image/svg+xml",
CSS = "text/css",
XSL = "text/xsl",
VTT = "text/vtt",
PDF = "application/pdf",
EVENTSTREAM = "text/event-stream"
}
/**
* @returns true iff `mimeType` has textual content. Concretely we return true if:
* - `mimeType` starts with "text/" or "multipart/"
* - `mimeType` ends with "+xml"
* - `mimeType` contains "json"
* - if `mimeType` is one of a predefined list textual mime types.
*/
export declare function isTextType(mimeType: string): boolean;
/**
* Port of net::HttpUtils::ParseContentType to extract mimeType and charset from
* the 'Content-Type' header.
*/
export declare function parseContentType(contentType: string): {
mimeType: string | null;
charset: string | null;
};