UNPKG

lambda-live-debugger

Version:

Debug Lambda functions locally like it is running in the cloud

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