@types/esrecurse 4.3.0 → 4.3.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.
esrecurse/README.md CHANGED
@@ -46,12 +46,6 @@ declare class Visitor {
46
46
  * @param node The AST node whose children to visit.
47
47
  */
48
48
  visitChildren(node: any): void;
49
-
50
- /**
51
- * Dynamically defined methods for specific node types (e.g., Literal, Program).
52
- * @param node The AST node to process.
53
- */
54
- [nodeType: string]: ((node: any) => void) | undefined;
55
49
  }
56
50
 
57
51
  /**
@@ -71,7 +65,7 @@ export { visit, Visitor, type VisitorOptions };
71
65
  ````
72
66
 
73
67
  ### Additional Details
74
- * Last updated: Wed, 07 May 2025 18:39:11 GMT
68
+ * Last updated: Sat, 19 Jul 2025 03:47:05 GMT
75
69
  * Dependencies: none
76
70
 
77
71
  # Credits
esrecurse/index.d.ts CHANGED
@@ -36,12 +36,6 @@ declare class Visitor {
36
36
  * @param node The AST node whose children to visit.
37
37
  */
38
38
  visitChildren(node: any): void;
39
-
40
- /**
41
- * Dynamically defined methods for specific node types (e.g., Literal, Program).
42
- * @param node The AST node to process.
43
- */
44
- [nodeType: string]: ((node: any) => void) | undefined;
45
39
  }
46
40
 
47
41
  /**
esrecurse/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@types/esrecurse",
3
- "version": "4.3.0",
3
+ "version": "4.3.1",
4
4
  "description": "TypeScript definitions for esrecurse",
5
5
  "homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/esrecurse",
6
6
  "license": "MIT",
@@ -21,6 +21,6 @@
21
21
  "scripts": {},
22
22
  "dependencies": {},
23
23
  "peerDependencies": {},
24
- "typesPublisherContentHash": "ef1e91eb756ec31bf71dc7be53e530320a0181ae54e7886315e10084c4d1ef33",
24
+ "typesPublisherContentHash": "0e4ed7e0fe84b6879532ce29fdfe397c1fc205d0c9dbc17172b64f3016ae0065",
25
25
  "typeScriptVersion": "5.1"
26
26
  }