Skip to content
This repository was archived by the owner on Oct 4, 2020. It is now read-only.

Commit e241763

Browse files
committed
Add XHR API types
1 parent 858b0a6 commit e241763

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

src/DOM/XHR.purs

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
-- | Types for the [WHATWG XMLHttpRequest Living Standard](https://xhr.spec.whatwg.org/#interface-formdata).
2+
module DOM.XHR where
3+
4+
-- | An `XMLHttpRequest` object instance.
5+
foreign import data XMLHttpRequest :: *
6+
7+
-- | A `FormData` object instance.
8+
foreign import data FormData :: *
9+
10+
-- | A `ProgressEvent` object instance.
11+
foreign import data ProgressEvent :: *

0 commit comments

Comments
 (0)