UNPKG

pure-fun

Version:

A collection of pure functions/helpers with 0 dependencies

7 lines (6 loc) 245 B
/** * A simplified wrapper around global.fetch() that returns JSON by default * and sets the Content-Type to `application/json` */ declare const fetchJSON: (url: string, options?: RequestInit) => Promise<any>; export default fetchJSON;