6 lines
180 B
TypeScript
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;
|