You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
331 B
9 lines
331 B
/** |
|
* 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
|