- import type { NodePath } from '@babel/traverse';
- import type { Node } from '@babel/types';
- declare function toArray(path: NodePath<Node | null>): string[];
- declare function toString(path: NodePath<Node | null>): string;
- export { toString as String, toArray as Array };
|