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.

18 lines (17 loc) 524 B
import { Collection } from '../nodes/Collection.js'; import { StringifyContext } from './stringify.js'; interface StringifyCollectionOptions { blockItemPrefix: string; flowChars: { start: '{'; end: '}'; } | { start: '['; end: ']'; }; itemIndent: string; onChompKeep?: () => void; onComment?: () => void; } export declare function stringifyCollection(collection: Readonly<Collection>, ctx: StringifyContext, options: StringifyCollectionOptions): string; export {};