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

Commit f534889

Browse files
committed
Update docs
1 parent e54aa31 commit f534889

File tree

1 file changed

+88
-4
lines changed

1 file changed

+88
-4
lines changed

README.md

Lines changed: 88 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,97 @@
22

33
## Module DOM
44

5-
### Types
5+
#### `DOM`
66

7-
data DOM :: !
7+
``` purescript
8+
data DOM :: !
9+
```
810

9-
data Node :: *
11+
Effect type for DOM maniupulation
1012

11-
data NodeList :: *
13+
#### `Node`
14+
15+
``` purescript
16+
data Node :: *
17+
```
18+
19+
General type for DOM nodes.
20+
21+
#### `NodeList`
22+
23+
``` purescript
24+
data NodeList :: *
25+
```
26+
27+
General type for DOM node lists.
28+
29+
30+
## Module DOM.File
31+
32+
33+
Types for the [W3C File API](http://dev.w3.org/2006/webapi/FileAPI/).
34+
35+
#### `File`
36+
37+
``` purescript
38+
data File :: *
39+
```
40+
41+
A `File` object instance.
42+
43+
#### `FileList`
44+
45+
``` purescript
46+
data FileList :: *
47+
```
48+
49+
A `FileList` object instance.
50+
51+
#### `FileReader`
52+
53+
``` purescript
54+
data FileReader :: *
55+
```
56+
57+
A `FileReader` object instance.
58+
59+
#### `Blob`
60+
61+
``` purescript
62+
data Blob :: *
63+
```
64+
65+
A `Blob` object instance.
66+
67+
68+
## Module DOM.XHR
69+
70+
71+
Types for the [WHATWG XMLHttpRequest Living Standard](https://xhr.spec.whatwg.org/#interface-formdata).
72+
73+
#### `XMLHttpRequest`
74+
75+
``` purescript
76+
data XMLHttpRequest :: *
77+
```
78+
79+
An `XMLHttpRequest` object instance.
80+
81+
#### `FormData`
82+
83+
``` purescript
84+
data FormData :: *
85+
```
86+
87+
A `FormData` object instance.
88+
89+
#### `ProgressEvent`
90+
91+
``` purescript
92+
data ProgressEvent :: *
93+
```
94+
95+
A `ProgressEvent` object instance.
1296

1397

1498

0 commit comments

Comments
 (0)