UNPKG

cdk-rds-sql

Version:

A CDK construct that allows creating roles and databases an on Aurora Serverless Postgresql cluster.

13 lines (12 loc) 338 B
/** * @internal * Alias prevents compiler from turning * ReadableStream into ReadableStream<any>, which is incompatible * with the NodeJS.ReadableStream global type. */ type ReadableStreamType = ReadableStream; /** * @internal */ export declare const isReadableStream: (stream: unknown) => stream is ReadableStreamType; export {};