Skip to content

Commit 5282c73

Browse files
Update type definitions
Minor changes to make the type definitions more accurate Add boolean and array to `Value` type, since `evaluate` can return those ```js Parser.evaluate("true") // returns boolean Parser.evaluate("[1,2,3]") // returns array ``` Update `evaluate`'s and `simplify`'s definition to only take an object of `Value`s instead of a `Value` (which can also be array/boolean/etc.) Update `evaluate` to return a `Value` type instead of just `number` Add `operators.array` to the `ParserOptions`
1 parent 6e889e0 commit 5282c73

File tree

1 file changed

+8
-5
lines changed

1 file changed

+8
-5
lines changed

parser.d.ts

+8-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
export type Value = number
22
| string
3+
| boolean
34
| ((...args: Value[]) => Value)
5+
| Value[]
46
| { [propertyName: string]: Value };
57

68
export interface Values {
@@ -51,6 +53,7 @@ export interface ParserOptions {
5153
max?: boolean,
5254
assignment?: boolean,
5355
fndef?: boolean,
56+
array?: boolean
5457
cbrt?: boolean,
5558
expm1?: boolean,
5659
log1p?: boolean,
@@ -65,16 +68,16 @@ export class Parser {
6568
functions: any;
6669
consts: any;
6770
parse(expression: string): Expression;
68-
evaluate(expression: string, values?: Value): number;
71+
evaluate(expression: string, values?: Values): Value;
6972
static parse(expression: string): Expression;
70-
static evaluate(expression: string, values?: Value): number;
73+
static evaluate(expression: string, values?: Values): Value;
7174
}
7275

7376
export interface Expression {
74-
simplify(values?: Value): Expression;
75-
evaluate(values?: Value): any;
77+
simplify(values?: Values): Expression;
78+
evaluate(values?: Values): Value;
7679
substitute(variable: string, value: Expression | string | number): Expression;
7780
symbols(options?: { withMembers?: boolean }): string[];
7881
variables(options?: { withMembers?: boolean }): string[];
79-
toJSFunction(params: string | string[], values?: Value): (...args: any[]) => number;
82+
toJSFunction(params: string | string[], values?: Values): (...args: any[]) => Value;
8083
}

0 commit comments

Comments
 (0)