Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@types/estree

Package Overview
Dependencies
Maintainers
1
Versions
41
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@types/estree - npm Package Compare versions

Comparing version 0.0.33 to 0.0.34

12

estree/index.d.ts

@@ -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;
}

4

estree/package.json
{
"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"
}
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc