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

@oxc-project/types

Package Overview
Dependencies
Maintainers
1
Versions
56
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@oxc-project/types - npm Package Compare versions

Comparing version

to
0.67.0

2

package.json
{
"name": "@oxc-project/types",
"version": "0.66.0",
"version": "0.67.0",
"description": "Types for Oxc AST nodes",

@@ -5,0 +5,0 @@ "keywords": [

@@ -547,2 +547,4 @@ // Auto-generated code, DO NOT EDIT DIRECTLY!

decorators?: [];
optional?: false;
typeAnnotation?: null;
}

@@ -1178,3 +1180,3 @@

export type TSTypeName = IdentifierReference | TSQualifiedName;
export type TSTypeName = IdentifierReference | ThisExpression | TSQualifiedName;

@@ -1219,3 +1221,3 @@ export interface TSQualifiedName extends Span {

type: 'TSClassImplements';
expression: TSTypeName;
expression: IdentifierReference | ThisExpression | MemberExpression;
typeArguments: TSTypeParameterInstantiation | null;

@@ -1320,4 +1322,4 @@ }

type: 'TSModuleDeclaration';
id: TSModuleDeclarationName;
body: TSModuleDeclarationBody | null;
id: BindingIdentifier | StringLiteral | TSQualifiedName;
body: TSModuleBlock | null;
kind: TSModuleDeclarationKind;

@@ -1330,6 +1332,2 @@ declare: boolean;

export type TSModuleDeclarationName = BindingIdentifier | StringLiteral;
export type TSModuleDeclarationBody = TSModuleDeclaration | TSModuleBlock;
export interface TSModuleBlock extends Span {

@@ -1336,0 +1334,0 @@ type: 'TSModuleBlock';