Skip to content

Commit

Permalink
updated types
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielJDufour committed Nov 23, 2022
1 parent 6a2f14f commit 4e5a66f
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions preciso.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ export function add(a: string, b: string): string;
export function binomial_coefficient(n: string, k: string): string;
export function ceil(n: string): string;
export function compare(a: string, b: string): "<" | ">" | "=";
export function cube_root(radicand: string, options?: { imaginary?: boolean; max_decimal_digits?: number }): string;
export function divide(dividend: string, divisor: string, options?: { max_decimal_digits: number; ellipsis: boolean }): string;
export function factorial(n: string): string;
export function floor(n: string): string;
Expand All @@ -16,7 +17,9 @@ export function min(nums: string[]): string;
export function multiply(a: string, b: string): string;
export function pow(base: string, exponent: string, options: { ellipsis?: boolean; max_decimal_digits?: number; zero_to_the_power_of_zero?: string }): string;
export function remainder(dividend: string, divisor: string): string;
export function root(radicand: string, index: string, options?: { imaginary?: boolean; max_decimal_digits?: number }): string;
export function sign(n: string): string;
export function square_root(radicand: string, options?: { imaginary?: boolean; max_decimal_digits?: number }): string;
export function subtract(a: string, b: string): string;
export function truncate(n: string);

Expand Down

0 comments on commit 4e5a66f

Please sign in to comment.