/** * @file PositionalInfo * @module unist-util-types/PositionalInfo */ import type { Node } from 'unist' /** * Object containing the [*positional information*][1] of [*tree*][2] `T`. * * [1]: https://github.com/syntax-tree/unist#positional-information * [2]: https://github.com/syntax-tree/unist#tree * * @see {@linkcode Node} * * @template {Node} [T=Node] - Tree to get positional information from */ type PositionalInfo = Pick export type { PositionalInfo as default }