fixed failing test

workstream:
This commit is contained in:
Nikolaj Kappler 2019-03-01 16:17:29 +01:00
parent f7cb1d4bd0
commit 1c29742225
2 changed files with 1 additions and 2 deletions

View File

@ -13,4 +13,3 @@
export * from "./lib/infer";
export * from "./lib/tern";

View File

@ -193,7 +193,7 @@ export interface Constraint extends AVal {
// #### Scopes ####
interface ScopeConstructor {
new(parent?: Scope): Scope;
new(): Scope;
new(parent: Scope, originNode: ESTree.Node): Scope;
}
export const Scope: ScopeConstructor;