Files
2026-02-10 01:14:19 +00:00

6 lines
180 B
TypeScript

import type { NodePath } from '@babel/traverse';
/**
* Prints the given path without leading or trailing comments.
*/
export default function printValue(path: NodePath): string;