版博士V2.0程序
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

9 lines
313 B

  1. import 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. */
  8. export declare const stringify: (cst: Token | CollectionItem) => string;