Urara-Blog/node_modules/.pnpm-store/v3/files/15/d75656f5940cb725071ac2fc61514f8ad579f67650ea172c51d788959794615bfec41ef19fc65c0efd1ca7c14f01b49869312b5e8e0eae4742afe4583c364a
2022-08-14 01:14:53 +08:00

9 lines
No EOL
331 B
Text

/**
* Parses an expression.
*
* @throws An `Error` if parsing fails.
* @returns An array containing the integer step size and the integer offset of the nth rule.
* @example nthCheck.parse("2n+3"); // returns [2, 3]
*/
export declare function parse(formula: string): [a: number, b: number];
//# sourceMappingURL=parse.d.ts.map