source: node_modules/yaml/dist/stringify/stringifyCollection.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: 524 bytes
Line 
1import { Collection } from '../nodes/Collection.js';
2import { StringifyContext } from './stringify.js';
3interface StringifyCollectionOptions {
4 blockItemPrefix: string;
5 flowChars: {
6 start: '{';
7 end: '}';
8 } | {
9 start: '[';
10 end: ']';
11 };
12 itemIndent: string;
13 onChompKeep?: () => void;
14 onComment?: () => void;
15}
16export declare function stringifyCollection(collection: Readonly<Collection>, ctx: StringifyContext, options: StringifyCollectionOptions): string;
17export {};
Note: See TracBrowser for help on using the repository browser.