UNPKG

yaml-ast-parser

Version:

[![Build Status](https://travis-ci.org/mulesoft-labs/yaml-ast-parser.svg?branch=master)](https://travis-ci.org/mulesoft-labs/yaml-ast-parser)

14 lines (13 loc) 379 B
declare class Mark { name: string; buffer: string; position: number; line: number; column: number; constructor(name: string, buffer: string, position: number, line: number, column: number); filePath: string; toLineEnd: boolean; getSnippet(indent?: number, maxLength?: number): string; toString(compact?: boolean): string; } export = Mark;