Skip to content

Commit

Permalink
Fix #2401: TypeScript definition of ConfigOptions missing option `p…
Browse files Browse the repository at this point in the history
…redictable`
  • Loading branch information
josdejong committed Jan 30, 2022
1 parent 3c54623 commit ce67989
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions types/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3409,11 +3409,11 @@ declare namespace math {

interface ConfigOptions {
epsilon?: number;
matrix?: string;
number?: string;
matrix?: 'Matrix' | 'Array';
number?: 'number' | 'BigNumber' | 'Fraction';
precision?: number;
parenthesis?: string;
randomSeed?: string;
predictable?: boolean;
randomSeed?: string | null;
}

interface MathJsJson {
Expand Down

0 comments on commit ce67989

Please sign in to comment.