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.
11 lines
385 B
11 lines
385 B
import { BaseXHR, Request } from "./polling-xhr.js"; |
|
/** |
|
* HTTP long-polling based on the `XMLHttpRequest` object provided by the `xmlhttprequest-ssl` package. |
|
* |
|
* Usage: Node.js, Deno (compat), Bun (compat) |
|
* |
|
* @see https://developer.mozilla.org/en-US/docs/Web/API/XMLHttpRequest |
|
*/ |
|
export declare class XHR extends BaseXHR { |
|
request(opts?: Record<string, any>): Request; |
|
}
|
|
|