UNPKG

aws-ddk-core

Version:

The AWS DataOps Development Kit is an open source development framework for customers that build data workflows and modern data architecture on AWS.

9 lines (8 loc) 313 B
import type { CollectionItem, Token } from './cst.js'; /** * 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;