main
Last change
on this file was d565449, checked in by stefan toskovski <stefantoska84@…>, 4 weeks ago |
Update repo after prototype presentation
|
-
Property mode
set to
100644
|
File size:
596 bytes
|
Line | |
---|
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 = import('./visitor-keys.js').VisitorKeys;
|
---|
15 | import KEYS from "./visitor-keys.js";
|
---|
16 | //# sourceMappingURL=index.d.ts.map |
---|
Note:
See
TracBrowser
for help on using the repository browser.