/** @type {(_: string) => (_: string) => (_: Record) => (_: null | string | FormData) => () => Promise} */ export const fetchImpl = url => method => headers => body => () => fetch(url, { redirect: 'manual', body, method, headers })