pages/node_modules/yaml/dist/parse/cst-stringify.d.ts
git_repo_user 0a38b60f32 first commit
2025-08-29 21:42:23 +00:00

8 lines
310 B
TypeScript

import type { CollectionItem, Token } from './cst';
/**
* Stringify a CST document, token, or collection item
*
* Fair warning: This applies no validation whatsoever, and
* simply concatenates the sources in their logical order.
*/
export declare const stringify: (cst: Token | CollectionItem) => string;