1- # Module Documentation
2-
31## Module Network.HTTP.Affjax.Request
42
53#### ` RequestContent `
@@ -11,6 +9,11 @@ data RequestContent :: *
119Type representing all content types that be sent via XHR (ArrayBufferView,
1210Blob, Document, String, FormData).
1311
12+ ##### Instances
13+ ``` purescript
14+ instance requestableRequestContent :: Requestable RequestContent
15+ ```
16+
1417#### ` Requestable `
1518
1619``` purescript
@@ -21,110 +24,23 @@ class Requestable a where
2124A class for types that can be converted to values that can be sent with
2225XHR requests.
2326
24- #### ` requestableRequestContent `
25-
27+ ##### Instances
2628``` purescript
2729instance requestableRequestContent :: Requestable RequestContent
28- ```
29-
30-
31- #### ` requestableInt8Array `
32-
33- ``` purescript
34- instance requestableInt8Array :: Requestable (A.ArrayView A.Int8)
35- ```
36-
37-
38- #### ` requestableInt16Array `
39-
40- ``` purescript
41- instance requestableInt16Array :: Requestable (A.ArrayView A.Int16)
42- ```
43-
44-
45- #### ` requestableInt32Array `
46-
47- ``` purescript
48- instance requestableInt32Array :: Requestable (A.ArrayView A.Int32)
49- ```
50-
51-
52- #### ` requestableUint8Array `
53-
54- ``` purescript
55- instance requestableUint8Array :: Requestable (A.ArrayView A.Uint8)
56- ```
57-
58-
59- #### ` requestableUint16Array `
60-
61- ``` purescript
62- instance requestableUint16Array :: Requestable (A.ArrayView A.Uint16)
63- ```
64-
65-
66- #### ` requestableUint32Array `
67-
68- ``` purescript
69- instance requestableUint32Array :: Requestable (A.ArrayView A.Uint32)
70- ```
71-
72-
73- #### ` requestableUint8ClampedArray `
74-
75- ``` purescript
76- instance requestableUint8ClampedArray :: Requestable (A.ArrayView A.Uint8Clamped)
77- ```
78-
79-
80- #### ` requestableFloat32Array `
81-
82- ``` purescript
83- instance requestableFloat32Array :: Requestable (A.ArrayView A.Float32)
84- ```
85-
86-
87- #### ` requestableFloat64Array `
88-
89- ``` purescript
90- instance requestableFloat64Array :: Requestable (A.ArrayView A.Float64)
91- ```
92-
93-
94- #### ` requestableBlob `
95-
96- ``` purescript
30+ instance requestableInt8Array :: Requestable (ArrayView Int8)
31+ instance requestableInt16Array :: Requestable (ArrayView Int16)
32+ instance requestableInt32Array :: Requestable (ArrayView Int32)
33+ instance requestableUint8Array :: Requestable (ArrayView Uint8)
34+ instance requestableUint16Array :: Requestable (ArrayView Uint16)
35+ instance requestableUint32Array :: Requestable (ArrayView Uint32)
36+ instance requestableUint8ClampedArray :: Requestable (ArrayView Uint8Clamped)
37+ instance requestableFloat32Array :: Requestable (ArrayView Float32)
38+ instance requestableFloat64Array :: Requestable (ArrayView Float64)
9739instance requestableBlob :: Requestable Blob
98- ```
99-
100-
101- #### ` requestableDocument `
102-
103- ``` purescript
10440instance requestableDocument :: Requestable Document
105- ```
106-
107-
108- #### ` requestableString `
109-
110- ``` purescript
11141instance requestableString :: Requestable String
112- ```
113-
114-
115- #### ` requestableFormData `
116-
117- ``` purescript
11842instance requestableFormData :: Requestable FormData
119- ```
120-
121-
122- #### ` requestableUnit `
123-
124- ``` purescript
12543instance requestableUnit :: Requestable Unit
12644```
12745
12846
129-
130-
0 commit comments