🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
DemoInstallSign in
Socket

ast-types-flow

Package Overview
Dependencies
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ast-types-flow - npm Package Compare versions

Comparing version

to
0.0.3

30

lib/types.js

@@ -22,2 +22,14 @@ /**

trailing: boolean;
} | {
type: 'CommentLine';
_CommentLine: void;
value: string;
leading: boolean;
trailing: boolean;
} | {
type: 'CommentBlock';
_CommentBlock: void;
value: string;
leading: boolean;
trailing: boolean;
};

@@ -43,2 +55,20 @@

// --babel
export type CommentLine = {
type: 'CommentLine';
_CommentLine: void;
value: string;
leading: boolean;
trailing: boolean;
};
// --babel
export type CommentBlock = {
type: 'CommentBlock';
_CommentBlock: void;
value: string;
leading: boolean;
trailing: boolean;
};
// Base types.

@@ -45,0 +75,0 @@

2

package.json
{
"name": "ast-types-flow",
"version": "0.0.2",
"version": "0.0.3",
"description": "Flow types for the Javascript AST",

@@ -5,0 +5,0 @@ "main": "lib/types.js",