@qwik.dev/core 2.0.0-beta.32 → 2.0.0-beta.35

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.
@@ -75,6 +75,7 @@ declare interface Container {
75
75
  readonly $locale$: string;
76
76
  readonly $getObjectById$: (id: number | string) => any;
77
77
  readonly $serverData$: Record<string, any>;
78
+ readonly $instanceHash$: string | null;
78
79
  $currentUniqueId$: number;
79
80
  $buildBase$: string | null;
80
81
  $renderPromise$: Promise<void> | null;
@@ -843,7 +844,8 @@ declare type StoreTarget = Record<string | symbol, any>;
843
844
 
844
845
  /** @internal */
845
846
  declare interface StreamWriter {
846
- write(chunk: string): void;
847
+ write(chunk: string): ValueOrPromise<void>;
848
+ waitForDrain?(): ValueOrPromise<void>;
847
849
  }
848
850
 
849
851
  /** @internal */