mirror of
https://github.com/denoland/deno.git
synced 2024-10-31 09:14:20 -04:00
56 lines
1.7 KiB
TypeScript
56 lines
1.7 KiB
TypeScript
|
// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
|
||
|
|
||
|
// deno-lint-ignore-file no-explicit-any
|
||
|
|
||
|
/// <reference no-default-lib="true" />
|
||
|
/// <reference lib="esnext" />
|
||
|
|
||
|
interface BroadcastChannelEventMap {
|
||
|
"message": MessageEvent;
|
||
|
"messageerror": MessageEvent;
|
||
|
}
|
||
|
|
||
|
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;
|
||
|
}
|
||
|
|
||
|
declare var BroadcastChannel: {
|
||
|
prototype: BroadcastChannel;
|
||
|
new (name: string): BroadcastChannel;
|
||
|
};
|