File tree Expand file tree Collapse file tree 1 file changed +21
-21
lines changed Expand file tree Collapse file tree 1 file changed +21
-21
lines changed Original file line number Diff line number Diff line change @@ -3669,10 +3669,10 @@ NetworkResult = (
36693669)
36703670
36713671NetworkEvent = (
3672- NetworkBeforeSendRequest //
3673- NetworkResponseStarted //
3674- NetworkResponseCompleted //
3675- NetworkError
3672+ NetworkBeforeRequestSentEvent //
3673+ NetworkResponseStartedEvent //
3674+ NetworkResponseCompletedEvent //
3675+ NetworkFetchErrorEvent
36763676)
36773677
36783678</pre>
@@ -3739,9 +3739,9 @@ NetworkCookie = {
37393739 path: text,
37403740 expires: uint,
37413741 size: uint,
3742- httpOnly: boolean ,
3743- secure: boolean ,
3744- session: boolean ,
3742+ httpOnly: bool ,
3743+ secure: bool ,
3744+ session: bool ,
37453745 sameSite: "strict" / "lax" / "none",
37463746};
37473747</pre>
@@ -3759,20 +3759,20 @@ of the cookie value.
37593759
37603760<pre class="cddl local-cddl">
37613761NetworkFetchTimingInfo = {
3762- requestTime: uint ,
3763- redirectStart: uint ,
3764- redirectEnd: uint ,
3765- fetchStart: uint ,
3766- dnsStart: uint ,
3767- dnsEnd: uint ,
3768- connectStart: uint ,
3769- connectEnd: uint ,
3770- tlsStart: uint ,
3771- <!-- tlsEnd: uint this should be the same as connectEnd -->
3772- requestStart: uint ,
3773- responseStart: uint ,
3774- <!-- TODO responseHeadersEnd: uint : Not sure quite what to use for this -->
3775- responseEnd: uint ,
3762+ requestTime: float ,
3763+ redirectStart: float ,
3764+ redirectEnd: float ,
3765+ fetchStart: float ,
3766+ dnsStart: float ,
3767+ dnsEnd: float ,
3768+ connectStart: float ,
3769+ connectEnd: float ,
3770+ tlsStart: float ,
3771+ <!-- tlsEnd: float this should be the same as connectEnd -->
3772+ requestStart: float ,
3773+ responseStart: float ,
3774+ <!-- TODO responseHeadersEnd: float : Not sure quite what to use for this -->
3775+ responseEnd: float ,
37763776};
37773777</pre>
37783778
You can’t perform that action at this time.
0 commit comments