123456789 |
- import { Context } from "../transform";
- import { Comment, Point } from "../types";
- import * as YAML from "../yaml";
- export declare function transformDocumentBody(document: YAML.ast.Document, context: Context, headEndMarkerPoint: null | Point): {
- documentBody: import("../types").DocumentBody;
- documentEndPoint: Point;
- documentTrailingComment: Comment | null;
- documentHeadTrailingComment: Comment | null;
- };
|