source: node_modules/yaml/dist/parse/cst-stringify.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: 313 bytes
RevLine 
[d24f17c]1import type { CollectionItem, Token } from './cst.js';
2/**
3 * Stringify a CST document, token, or collection item
4 *
5 * Fair warning: This applies no validation whatsoever, and
6 * simply concatenates the sources in their logical order.
7 */
8export declare const stringify: (cst: Token | CollectionItem) => string;
Note: See TracBrowser for help on using the repository browser.