2022-01-20 02:10:16 -05:00
|
|
|
// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
|
2021-05-22 12:08:24 -04:00
|
|
|
|
2021-12-09 17:12:21 -05:00
|
|
|
// deno-lint-ignore-file no-explicit-any no-var
|
2021-05-22 12:08:24 -04:00
|
|
|
|
|
|
|
/// <reference no-default-lib="true" />
|
|
|
|
/// <reference lib="esnext" />
|
|
|
|
|
2022-08-16 23:12:24 -04:00
|
|
|
/** @category Broadcast Channel */
|
2021-05-22 12:08:24 -04:00
|
|
|
interface BroadcastChannelEventMap {
|
|
|
|
"message": MessageEvent;
|
|
|
|
"messageerror": MessageEvent;
|
|
|
|
}
|
|
|
|
|
2022-08-16 23:12:24 -04:00
|
|
|
/** @category Broadcast Channel */
|
2021-05-22 12:08:24 -04:00
|
|
|
interface BroadcastChannel extends EventTarget {
|
|
|
|
/**
|
|
|
|
* Returns the channel name (as passed to the constructor).
|
|
|
|
*/
|
|
|
|
readonly name: string;
|
|
|
|
onmessage: ((this: BroadcastChannel, ev: MessageEvent) => any) | null;
|
|
|
|
onmessageerror: ((this: BroadcastChannel, ev: MessageEvent) => any) | null;
|
|
|
|
/**
|
|
|
|
* Closes the BroadcastChannel object, opening it up to garbage collection.
|
|
|
|
*/
|
|
|
|
close(): void;
|
|
|
|
/**
|
|
|
|
* Sends the given message to other BroadcastChannel objects set up for
|
|
|
|
* this channel. Messages can be structured objects, e.g. nested objects
|
|
|
|
* and arrays.
|
|
|
|
*/
|
|
|
|
postMessage(message: any): void;
|
|
|
|
addEventListener<K extends keyof BroadcastChannelEventMap>(
|
|
|
|
type: K,
|
|
|
|
listener: (this: BroadcastChannel, ev: BroadcastChannelEventMap[K]) => any,
|
|
|
|
options?: boolean | AddEventListenerOptions,
|
|
|
|
): void;
|
|
|
|
addEventListener(
|
|
|
|
type: string,
|
|
|
|
listener: EventListenerOrEventListenerObject,
|
|
|
|
options?: boolean | AddEventListenerOptions,
|
|
|
|
): void;
|
|
|
|
removeEventListener<K extends keyof BroadcastChannelEventMap>(
|
|
|
|
type: K,
|
|
|
|
listener: (this: BroadcastChannel, ev: BroadcastChannelEventMap[K]) => any,
|
|
|
|
options?: boolean | EventListenerOptions,
|
|
|
|
): void;
|
|
|
|
removeEventListener(
|
|
|
|
type: string,
|
|
|
|
listener: EventListenerOrEventListenerObject,
|
|
|
|
options?: boolean | EventListenerOptions,
|
|
|
|
): void;
|
|
|
|
}
|
|
|
|
|
2022-08-16 23:12:24 -04:00
|
|
|
/** @category Broadcast Channel */
|
2021-05-22 12:08:24 -04:00
|
|
|
declare var BroadcastChannel: {
|
|
|
|
prototype: BroadcastChannel;
|
|
|
|
new (name: string): BroadcastChannel;
|
|
|
|
};
|