@typescript-eslint/visitor-keys 6.2.2-alpha.2 → 6.2.2-alpha.3

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.
@@ -0,0 +1,4 @@
1
+ import type { TSESTree } from '@typescript-eslint/types';
2
+ declare const getKeys: (node: TSESTree.Node) => readonly string[];
3
+ export { getKeys };
4
+ //# sourceMappingURL=get-keys.d.ts.map
@@ -0,0 +1,3 @@
1
+ export { getKeys } from './get-keys';
2
+ export { visitorKeys, VisitorKeys } from './visitor-keys';
3
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1,6 @@
1
+ interface VisitorKeys {
2
+ readonly [type: string]: readonly string[] | undefined;
3
+ }
4
+ declare const visitorKeys: VisitorKeys;
5
+ export { visitorKeys, VisitorKeys };
6
+ //# sourceMappingURL=visitor-keys.d.ts.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@typescript-eslint/visitor-keys",
3
- "version": "6.2.2-alpha.2+35adf7d9b",
3
+ "version": "6.2.2-alpha.3+2103c0004",
4
4
  "description": "Visitor keys used to help traverse the TypeScript-ESTree AST",
5
5
  "files": [
6
6
  "dist",
@@ -45,7 +45,7 @@
45
45
  "typecheck": "tsc -p tsconfig.json --noEmit"
46
46
  },
47
47
  "dependencies": {
48
- "@typescript-eslint/types": "6.2.2-alpha.2+35adf7d9b",
48
+ "@typescript-eslint/types": "6.2.2-alpha.3+2103c0004",
49
49
  "eslint-visitor-keys": "^3.4.1"
50
50
  },
51
51
  "devDependencies": {
@@ -62,5 +62,5 @@
62
62
  ]
63
63
  }
64
64
  },
65
- "gitHead": "35adf7d9b22628c083ba78eb2f9ede3a4e86a6bc"
65
+ "gitHead": "2103c00044ee6b533de1279a1815e7cc29197005"
66
66
  }