Rocky_Mountain_Vending/.pnpm-store/v10/files/8c/92f3431bb0ffb6146f113bf4a9de21af0908dfe61df44981b2f4871451a3e1a4b015601623bdabb2e93371b9312ac10946336b22eadd820fdd4764f4d29700
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

29 lines
No EOL
763 B
Text

export type Pattern = {
name: string;
expression: string;
estimateBytes?: (content: string) => number;
};
export type PatternMatchResult = {
name: string;
line: number;
column: number;
};
export type Result = {
matches: PatternMatchResult[];
estimatedByteSavings: number;
};
/**
* @param {string} content
* @param {import('../cdt/generated/SourceMap.js')|null} map
* @return {Result}
*/
export function detectLegacyJavaScript(content: string, map: import("../cdt/generated/SourceMap.js") | null): Result;
/**
* @return {Pattern[]}
*/
export function getTransformPatterns(): Pattern[];
export function getCoreJsPolyfillData(): {
name: string;
coreJs3Module: string;
}[];
//# sourceMappingURL=legacy-javascript.d.ts.map