/** * @file Line * @module unist-util-types/Line */ /** * Line in a source [*file*][file] (`1`-indexed integer). * * [file]: https://github.com/syntax-tree/unist#file */ type Line = number export type { Line as default }