版博士V2.0程序
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
 
 
 
 

18 wiersze
608 B

  1. /**
  2. * Get visitor keys of a given node.
  3. * @param {object} node The AST node to get keys.
  4. * @returns {readonly string[]} Visitor keys of the node.
  5. */
  6. export function getKeys(node: object): readonly string[];
  7. /**
  8. * Make the union set with `KEYS` and given keys.
  9. * @param {VisitorKeys} additionalKeys The additional keys.
  10. * @returns {VisitorKeys} The union set.
  11. */
  12. export function unionWith(additionalKeys: VisitorKeys): VisitorKeys;
  13. export { KEYS };
  14. export type VisitorKeys = {
  15. readonly [type: string]: readonly string[];
  16. };
  17. import KEYS from "./visitor-keys.js";
  18. //# sourceMappingURL=index.d.ts.map