File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -159,13 +159,13 @@ function XStream<Output = SSEOutput>(options: XStreamOptions<Output>) {
159159 * Uint8Array binary -> string -> Output
160160 */
161161 readableStream
162- . pipeThrough ( decoderStream )
162+ . pipeThrough ( decoderStream as TransformStream < Uint8Array , string > )
163163 . pipeThrough ( transformStream )
164164 : /**
165165 * Uint8Array binary -> string -> SSE part string -> Default Output {@link SSEOutput}
166166 */
167167 readableStream
168- . pipeThrough ( decoderStream )
168+ . pipeThrough ( decoderStream as TransformStream < Uint8Array , string > )
169169 . pipeThrough ( splitStream ( ) )
170170 . pipeThrough ( splitPart ( ) )
171171 ) as XReadableStream < Output > ;
Original file line number Diff line number Diff line change 4747 "predist" : " npm run version && npm run token:statistic && npm run token:meta" ,
4848 "format" : " biome format --write ." ,
4949 "prelint" : " dumi setup" ,
50- "lint" : " npm run version && npm run tsc && npm run lint:script && npm run lint:md && npm run lint:style && npm run lint:changelog" ,
50+ "lint" : " npm run version && npm run lint:script && npm run lint:md && npm run lint:style && npm run lint:changelog" ,
5151 "lint:changelog" : " tsx scripts/generate-component-changelog.ts" ,
5252 "lint:deps" : " antd-tools run deps-lint" ,
5353 "lint:md" : " remark . -f -q" ,
251251 "tar" : " ^7.4.3" ,
252252 "tsx" : " ^4.19.1" ,
253253 "typedoc" : " ^0.28.0" ,
254- "typescript" : " ~5.8 .2" ,
254+ "typescript" : " ~5.9 .2" ,
255255 "vanilla-jsoneditor" : " ^3.0.0" ,
256256 "web-streams-polyfill" : " ^4.0.0" ,
257257 "webpack" : " ^5.94.0" ,
You can’t perform that action at this time.
0 commit comments