You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/** A CloseEvent is sent to clients using WebSockets when the connection is closed. This is delivered to the listener indicated by the WebSocket object's onclose attribute. */
3582
3600
interface CloseEvent extends Event {
3583
3601
/**
@@ -18903,6 +18921,10 @@ interface BlobCallback {
18903
18921
(blob: Blob | null): void;
18904
18922
}
18905
18923
18924
+
interface ClipboardItemDelayedCallback {
18925
+
(): ClipboardItemData;
18926
+
}
18927
+
18906
18928
interface CustomElementConstructor {
18907
18929
new (...params: any[]): HTMLElement;
18908
18930
}
@@ -19649,6 +19671,9 @@ declare function addEventListener<K extends keyof WindowEventMap>(type: K, liste
0 commit comments