File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -236,13 +236,13 @@ namespace Cache_2 {
236236 dataState: " complete" ;
237237 fromOptimisticTransaction? : boolean ;
238238 } | {
239- result: DataValue .Streaming <TData > | null ;
239+ result: DataValue .Streaming <TData >;
240240 complete: false ;
241241 missing? : never ;
242242 dataState: " streaming" ;
243243 fromOptimisticTransaction? : boolean ;
244244 } | {
245- result: DataValue .Partial <TData > | null ;
245+ result: DataValue .Partial <TData >;
246246 complete: false ;
247247 missing? : MissingFieldError ;
248248 dataState: " partial" ;
Original file line number Diff line number Diff line change @@ -811,13 +811,13 @@ namespace Cache_2 {
811811 dataState: " complete" ;
812812 fromOptimisticTransaction? : boolean ;
813813 } | {
814- result: DataValue .Streaming <TData > | null ;
814+ result: DataValue .Streaming <TData >;
815815 complete: false ;
816816 missing? : never ;
817817 dataState: " streaming" ;
818818 fromOptimisticTransaction? : boolean ;
819819 } | {
820- result: DataValue .Partial <TData > | null ;
820+ result: DataValue .Partial <TData >;
821821 complete: false ;
822822 missing? : MissingFieldError ;
823823 dataState: " partial" ;
Original file line number Diff line number Diff line change @@ -385,14 +385,14 @@ export declare namespace Cache {
385385 fromOptimisticTransaction ?: boolean ;
386386 }
387387 | {
388- result : DataValue . Streaming < TData > | null ;
388+ result : DataValue . Streaming < TData > ;
389389 complete : false ;
390390 missing ?: never ;
391391 dataState : "streaming" ;
392392 fromOptimisticTransaction ?: boolean ;
393393 }
394394 | {
395- result : DataValue . Partial < TData > | null ;
395+ result : DataValue . Partial < TData > ;
396396 complete : false ;
397397 missing ?: MissingFieldError ;
398398 dataState : "partial" ;
You can’t perform that action at this time.
0 commit comments