@oxc-project/types 0.51.0 → 0.52.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/types.d.ts +0 -7
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@oxc-project/types",
3
- "version": "0.51.0",
3
+ "version": "0.52.0",
4
4
  "description": "Types for Oxc AST nodes",
5
5
  "keywords": [
6
6
  "AST",
package/types.d.ts CHANGED
@@ -727,12 +727,6 @@ export interface ImportNamespaceSpecifier extends Span {
727
727
  local: BindingIdentifier;
728
728
  }
729
729
 
730
- export interface WithClause extends Span {
731
- type: 'WithClause';
732
- attributesKeyword: IdentifierName;
733
- withEntries: Array<ImportAttribute>;
734
- }
735
-
736
730
  export interface ImportAttribute extends Span {
737
731
  type: 'ImportAttribute';
738
732
  key: ImportAttributeKey;
@@ -947,7 +941,6 @@ export interface TSLiteralType extends Span {
947
941
 
948
942
  export type TSLiteral =
949
943
  | BooleanLiteral
950
- | NullLiteral
951
944
  | NumericLiteral
952
945
  | BigIntLiteral
953
946
  | StringLiteral