source: node_modules/yaml/dist/stringify/stringifyString.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: 363 bytes
Line 
1import { Scalar } from '../nodes/Scalar.js';
2import type { StringifyContext } from './stringify.js';
3interface StringifyScalar {
4 value: string;
5 comment?: string | null;
6 type?: string;
7}
8export declare function stringifyString(item: Scalar | StringifyScalar, ctx: StringifyContext, onComment?: () => void, onChompKeep?: () => void): string;
9export {};
Note: See TracBrowser for help on using the repository browser.