UNPKG

cdk-iot-greengrass-fleet-provisioning

Version:

CDK Construct for AWS IoT Greengrass Fleet Provisioning (with AWS IoT Certificates)

17 lines (16 loc) 421 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; /** * @internal */ export declare const isBlob: (blob: unknown) => blob is Blob; export {};