@@ -15,7 +15,7 @@ pub type FetchRequest
15
15
16
16
pub type FetchResponse
17
17
18
- @ external ( javascript , "../ffi .mjs" , "raw_send" )
18
+ @ external ( javascript , "../gleam_fetch_ffi .mjs" , "raw_send" )
19
19
pub fn raw_send ( a : FetchRequest ) -> Promise ( Result ( FetchResponse , FetchError ) )
20
20
21
21
pub fn send (
@@ -40,26 +40,26 @@ pub fn send_bits(
40
40
} )
41
41
}
42
42
43
- @ external ( javascript , "../ffi .mjs" , "to_fetch_request" )
43
+ @ external ( javascript , "../gleam_fetch_ffi .mjs" , "to_fetch_request" )
44
44
pub fn to_fetch_request ( a : Request ( String ) ) -> FetchRequest
45
45
46
- @ external ( javascript , "../ffi .mjs" , "bitarray_request_to_fetch_request" )
46
+ @ external ( javascript , "../gleam_fetch_ffi .mjs" , "bitarray_request_to_fetch_request" )
47
47
pub fn bitarray_request_to_fetch_request ( a : Request ( BitArray ) ) -> FetchRequest
48
48
49
- @ external ( javascript , "../ffi .mjs" , "from_fetch_response" )
49
+ @ external ( javascript , "../gleam_fetch_ffi .mjs" , "from_fetch_response" )
50
50
pub fn from_fetch_response ( a : FetchResponse ) -> Response ( FetchBody )
51
51
52
- @ external ( javascript , "../ffi .mjs" , "read_bytes_body" )
52
+ @ external ( javascript , "../gleam_fetch_ffi .mjs" , "read_bytes_body" )
53
53
pub fn read_bytes_body (
54
54
a : Response ( FetchBody ) ,
55
55
) -> Promise ( Result ( Response ( BitArray ) , FetchError ) )
56
56
57
- @ external ( javascript , "../ffi .mjs" , "read_text_body" )
57
+ @ external ( javascript , "../gleam_fetch_ffi .mjs" , "read_text_body" )
58
58
pub fn read_text_body (
59
59
a : Response ( FetchBody ) ,
60
60
) -> Promise ( Result ( Response ( String ) , FetchError ) )
61
61
62
- @ external ( javascript , "../ffi .mjs" , "read_json_body" )
62
+ @ external ( javascript , "../gleam_fetch_ffi .mjs" , "read_json_body" )
63
63
pub fn read_json_body (
64
64
a : Response ( FetchBody ) ,
65
65
) -> Promise ( Result ( Response ( Dynamic ) , FetchError ) )
0 commit comments