import { Recipe } from "../../recipe"; import { TreeVisitor } from "../../visitor"; import { ExecutionContext } from "../../execution"; /** * Adds the radix parameter to parseInt() calls when missing. * * The radix parameter specifies the base of the numeral system to use. * Without it, parseInt can produce unexpected results: * - parseInt("08") was 0 in older JavaScript (octal interpretation) * - Modern JavaScript defaults to base 10, but explicit radix is clearer * * Examples: * - `parseInt(x)` becomes `parseInt(x, 10)` * - `parseInt(str)` becomes `parseInt(str, 10)` */ export declare class AddParseIntRadix extends Recipe { name: string; displayName: string; description: string; editor(): Promise>; } //# sourceMappingURL=add-parse-int-radix.d.ts.map