├── .gitignore ├── LICENSE ├── README.md ├── bsconfig.json ├── examples └── example.res ├── package.json └── src ├── Fetch.res ├── Fetch_Abort.res ├── Fetch_Blob.res └── Fetch_FormData.res /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennsl/rescript-fetch/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennsl/rescript-fetch/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennsl/rescript-fetch/HEAD/README.md -------------------------------------------------------------------------------- /bsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennsl/rescript-fetch/HEAD/bsconfig.json -------------------------------------------------------------------------------- /examples/example.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennsl/rescript-fetch/HEAD/examples/example.res -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennsl/rescript-fetch/HEAD/package.json -------------------------------------------------------------------------------- /src/Fetch.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennsl/rescript-fetch/HEAD/src/Fetch.res -------------------------------------------------------------------------------- /src/Fetch_Abort.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennsl/rescript-fetch/HEAD/src/Fetch_Abort.res -------------------------------------------------------------------------------- /src/Fetch_Blob.res: -------------------------------------------------------------------------------- 1 | type t 2 | -------------------------------------------------------------------------------- /src/Fetch_FormData.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennsl/rescript-fetch/HEAD/src/Fetch_FormData.res --------------------------------------------------------------------------------