jsii-rosetta
Version:
[](https://cdk.dev) [: Promise<any>;
/**
* Serializes a possibly large object into the provided writer. The object may
* be large enough that the JSON text cannot fit in a single string value.
*
* Prefer using JSON.stringify if you know the object is always small enough
* that the JSON text can fit in a single string value, as this would have
* better performance.
*
* @param value the value to be serialized.
* @param writers the sequence of write streams to use to output the JSON text.
*/
export declare function stringify(value: any, ...writers: Array<NodeJS.ReadWriteStream | NodeJS.WritableStream>): Promise<void>;
//# sourceMappingURL=json.d.ts.map