source: node_modules/yaml/dist/compose/resolve-block-scalar.d.ts

main
Last change on this file was d24f17c, checked in by Aleksandar Panovski <apano77@…>, 15 months ago

Initial commit

  • Property mode set to 100644
File size: 433 bytes
Line 
1import { Range } from '../nodes/Node.js';
2import { Scalar } from '../nodes/Scalar.js';
3import type { BlockScalar } from '../parse/cst.js';
4import type { ComposeErrorHandler } from './composer.js';
5export declare function resolveBlockScalar(scalar: BlockScalar, strict: boolean, onError: ComposeErrorHandler): {
6 value: string;
7 type: Scalar.BLOCK_FOLDED | Scalar.BLOCK_LITERAL | null;
8 comment: string;
9 range: Range;
10};
Note: See TracBrowser for help on using the repository browser.