@types/estree
Advanced tools
Comparing version 0.0.33 to 0.0.34
@@ -66,7 +66,9 @@ // Type definitions for ESTree AST specification | ||
generator?: boolean; | ||
async?: boolean; | ||
// The body is either BlockStatement or Expression because arrow functions | ||
// can have a body that's either. FunctionDeclarations and | ||
// FunctionExpressions nave only BlockStatement bodies. | ||
// FunctionExpressions have only BlockStatement bodies. | ||
body: BlockStatement | Expression; | ||
} | ||
export type Function = | ||
@@ -212,3 +214,4 @@ FunctionDeclaration | FunctionExpression | ArrowFunctionExpression; | ||
CallExpression | NewExpression | SequenceExpression | TemplateLiteral | | ||
TaggedTemplateExpression | ClassExpression | MetaProperty | Identifier; | ||
TaggedTemplateExpression | ClassExpression | MetaProperty | Identifier | | ||
AwaitExpression; | ||
export interface BaseExpression extends BaseNode { } | ||
@@ -531,1 +534,6 @@ | ||
} | ||
export interface AwaitExpression extends BaseExpression { | ||
type: "AwaitExpression"; | ||
argument: Expression; | ||
} |
{ | ||
"name": "@types/estree", | ||
"version": "0.0.33", | ||
"version": "0.0.34", | ||
"description": "TypeScript definitions for ESTree AST specification", | ||
@@ -15,3 +15,3 @@ "license": "MIT", | ||
"typings": "index.d.ts", | ||
"typesPublisherContentHash": "f29d17a6b651c3791ec7343490560cd6b45c68d9d5fecd2cc0061b4dc41fa847" | ||
"typesPublisherContentHash": "e13a11e00708c3be1468097059019c50e9ddf8312391e8b6e1f837d895ee6801" | ||
} |
@@ -11,3 +11,3 @@ # Installation | ||
Additional Details | ||
* Last updated: Mon, 19 Sep 2016 16:15:24 GMT | ||
* Last updated: Tue, 20 Sep 2016 21:14:48 GMT | ||
* File structure: ProperModule | ||
@@ -14,0 +14,0 @@ * Library Dependencies: none |
@@ -22,3 +22,3 @@ { | ||
"hasPackageJson": false, | ||
"contentHash": "f29d17a6b651c3791ec7343490560cd6b45c68d9d5fecd2cc0061b4dc41fa847" | ||
"contentHash": "e13a11e00708c3be1468097059019c50e9ddf8312391e8b6e1f837d895ee6801" | ||
} |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
16745
466