@oxc-project/types 0.74.0 → 0.75.1

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 +1 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@oxc-project/types",
3
- "version": "0.74.0",
3
+ "version": "0.75.1",
4
4
  "description": "Types for Oxc AST nodes",
5
5
  "keywords": [
6
6
  "AST",
package/types.d.ts CHANGED
@@ -1515,6 +1515,7 @@ export type UpdateOperator = '++' | '--';
1515
1515
  export interface Span {
1516
1516
  start: number;
1517
1517
  end: number;
1518
+ range?: [number, number];
1518
1519
  }
1519
1520
 
1520
1521
  export type ModuleKind = 'script' | 'module';