yaml-ast-parser
Version:
[](https://travis-ci.org/mulesoft-labs/yaml-ast-parser)
14 lines (13 loc) • 379 B
TypeScript
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;