UNPKG

263 BPlain TextView Raw
1/**
2 * @license
3 * Copyright 2020 Google Inc.
4 * SPDX-License-Identifier: Apache-2.0
5 */
6
7/**
8 * @public
9 */
10export interface ConnectionTransport {
11 send(message: string): void;
12 close(): void;
13 onmessage?: (message: string) => void;
14 onclose?: () => void;
15}