UNPKG

yaml-unist-parser

Version:

A YAML parser that produces output compatible with unist

8 lines (7 loc) 243 B
import { Context } from "../transform.js"; import { Position } from "../types.js"; export interface Range { origStart: number; origEnd: number; } export declare function transformRange(range: Range, context: Context): Position;