mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-04 15:49:31 +08:00
9 lines
No EOL
331 B
Text
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 |