diff options
author | David Sherret <dsherret@users.noreply.github.com> | 2023-05-08 18:53:58 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-09 00:53:58 +0200 |
commit | 723d4b038203e35f5be6d11088a7288e6d709869 (patch) | |
tree | 76f731d82176a324210453561fb1b27a54beaa88 /ext/node/polyfills/_stream.d.ts | |
parent | 1f9d47b174a148dcfef2c86cfabd51b0b75f0dc7 (diff) |
perf(fmt): faster formatting for minified object literals (#19050)
Has fix for
https://github.com/dprint/dprint-plugin-typescript/issues/520
Diffstat (limited to 'ext/node/polyfills/_stream.d.ts')
-rw-r--r-- | ext/node/polyfills/_stream.d.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/node/polyfills/_stream.d.ts b/ext/node/polyfills/_stream.d.ts index 467ac9f36..382bb9093 100644 --- a/ext/node/polyfills/_stream.d.ts +++ b/ext/node/polyfills/_stream.d.ts @@ -1190,7 +1190,7 @@ type PipelineDestinationPromiseFunction<T, P> = ( source: AsyncIterable<T>, ) => Promise<P>; type PipelineDestination<S extends PipelineTransformSource<any>, P> = S extends - PipelineTransformSource<infer ST> ? + PipelineTransformSource<infer ST> ? | WritableStream | PipelineDestinationIterableFunction<ST> | PipelineDestinationPromiseFunction<ST, P> |