Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
 
 
 

9 wiersze
331 B

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