Skip to content

Commit

Permalink
Add string[] type to 'params' argument
Browse files Browse the repository at this point in the history
  • Loading branch information
j2L4e committed Oct 8, 2019
1 parent 4aaff4f commit 2d8f137
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion parser.d.ts
Expand Up @@ -76,5 +76,5 @@ export interface Expression {
substitute(variable: string, value: Expression | string | number): Expression;
symbols(options?: { withMembers?: boolean }): string[];
variables(options?: { withMembers?: boolean }): string[];
toJSFunction(params: string, values?: Value): (...args: any[]) => number;
toJSFunction(params: string | string[], values?: Value): (...args: any[]) => number;
}

0 comments on commit 2d8f137

Please sign in to comment.