版博士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.

cst-stringify.d.ts 313 B

12345678
  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;