printValue.d.ts 180 B

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