sortValueNode.d.ts 231 B

123456789
  1. import type { ValueNode } from '../language/ast';
  2. /**
  3. * Sort ValueNode.
  4. *
  5. * This function returns a sorted copy of the given ValueNode.
  6. *
  7. * @internal
  8. */
  9. export declare function sortValueNode(valueNode: ValueNode): ValueNode;