@@ -2524,9 +2524,6 @@ export interface FireAnimationFrame extends Complete {
25242524 } ,
25252525 } ;
25262526}
2527- export function isFireAnimationFrame ( event : Event ) : event is FireAnimationFrame {
2528- return event . name === Name . FIRE_ANIMATION_FRAME ;
2529- }
25302527
25312528export interface RequestAnimationFrame extends Instant {
25322529 name : Name . REQUEST_ANIMATION_FRAME ;
@@ -2538,9 +2535,6 @@ export interface RequestAnimationFrame extends Instant {
25382535 } ,
25392536 } ;
25402537}
2541- export function isRequestAnimationFrame ( event : Event ) : event is RequestAnimationFrame {
2542- return event . name === Name . REQUEST_ANIMATION_FRAME ;
2543- }
25442538
25452539export interface TimerInstall extends Instant {
25462540 name : Name . TIMER_INSTALL ;
@@ -2583,9 +2577,6 @@ export interface RequestIdleCallback extends Instant {
25832577
25842578 } ;
25852579}
2586- export function isRequestIdleCallback ( event : Event ) : event is RequestIdleCallback {
2587- return event . name === Name . REQUEST_IDLE_CALLBACK ;
2588- }
25892580
25902581export interface WebSocketCreate extends Instant {
25912582 name : Name . WEB_SOCKET_CREATE ;
@@ -2649,10 +2640,6 @@ export interface WebSocketSend extends Instant {
26492640 } ;
26502641}
26512642
2652- export function isWebSocketSend ( event : Event ) : event is WebSocketSend {
2653- return event . name === Name . WEB_SOCKET_SEND ;
2654- }
2655-
26562643export interface WebSocketReceive extends Instant {
26572644 name : Name . WEB_SOCKET_RECEIVE ;
26582645 args : Args & {
@@ -2665,9 +2652,6 @@ export interface WebSocketReceive extends Instant {
26652652 } ,
26662653 } ;
26672654}
2668- export function isWebSocketReceive ( event : Event ) : event is WebSocketReceive {
2669- return event . name === Name . WEB_SOCKET_RECEIVE ;
2670- }
26712655
26722656export interface WebSocketSendHandshakeRequest extends Instant {
26732657 name : Name . WEB_SOCKET_SEND_HANDSHAKE_REQUEST ;
@@ -3232,11 +3216,6 @@ export interface V8SourceRundownSourcesStubScriptCatchupEvent extends Event {
32323216 } ;
32333217}
32343218
3235- export function isV8SourceRundownSourcesStubScriptCatchupEvent ( event : Event ) :
3236- event is V8SourceRundownSourcesStubScriptCatchupEvent {
3237- return event . cat === 'disabled-by-default-devtools.v8-source-rundown-sources' && event . name === 'StubScriptCatchup' ;
3238- }
3239-
32403219export function isAnyScriptCatchupEvent ( event : Event ) : event is V8SourceRundownSourcesScriptCatchupEvent |
32413220 V8SourceRundownSourcesLargeScriptCatchupEvent | V8SourceRundownSourcesStubScriptCatchupEvent {
32423221 return event . cat === 'disabled-by-default-devtools.v8-source-rundown-sources' ;
0 commit comments