@qwik.dev/core 2.0.0-beta.32 → 2.0.0-beta.34
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/backpatch/index.mjs +2 -2
- package/dist/backpatch/package.json +1 -1
- package/dist/backpatch-executor.debug.js +12 -6
- package/dist/backpatch-executor.js +1 -1
- package/dist/build/package.json +1 -1
- package/dist/cli.mjs +2 -2
- package/dist/core-internal.d.ts +71 -5
- package/dist/core.min.mjs +2 -2
- package/dist/core.mjs +97 -94
- package/dist/core.mjs.map +1 -1
- package/dist/core.prod.mjs +2159 -2164
- package/dist/loader/package.json +1 -1
- package/dist/optimizer.mjs +724 -719
- package/dist/preloader.mjs +64 -89
- package/dist/server.d.ts +0 -54
- package/dist/server.mjs +112 -487
- package/dist/server.prod.mjs +204 -616
- package/dist/testing/index.d.ts +2 -1
- package/dist/testing/index.mjs +766 -3522
- package/dist/testing/package.json +1 -1
- package/package.json +3 -3
package/dist/testing/index.d.ts
CHANGED
|
@@ -843,7 +843,8 @@ declare type StoreTarget = Record<string | symbol, any>;
|
|
|
843
843
|
|
|
844
844
|
/** @internal */
|
|
845
845
|
declare interface StreamWriter {
|
|
846
|
-
write(chunk: string): void
|
|
846
|
+
write(chunk: string): ValueOrPromise<void>;
|
|
847
|
+
waitForDrain?(): ValueOrPromise<void>;
|
|
847
848
|
}
|
|
848
849
|
|
|
849
850
|
/** @internal */
|