You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
393 B
12 lines
393 B
import { Transport } from "../transport"; |
|
/** |
|
* Reference: https://developer.mozilla.org/en-US/docs/Web/API/WebTransport_API |
|
*/ |
|
export declare class WebTransport extends Transport { |
|
private readonly session; |
|
private readonly writer; |
|
constructor(session: any, stream: any, reader: any); |
|
get name(): string; |
|
send(packets: any): Promise<void>; |
|
doClose(fn: any): void; |
|
}
|
|
|