mirror of
https://github.com/chenasraf/DefinitelyTyped.git
synced 2026-05-18 01:49:01 +00:00
7 lines
189 B
TypeScript
7 lines
189 B
TypeScript
import { XMLHttpRequest } from 'xmlhttprequest';
|
|
|
|
const { OPENED, HEADERS_RECEIVED, LOADING, DONE } = XMLHttpRequest;
|
|
|
|
const x = new XMLHttpRequest();
|
|
x.open('GET', 'https://example.com');
|