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>
29 lines
No EOL
763 B
Text
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 |