5 lines
143 B
TypeScript
5 lines
143 B
TypeScript
export const fetcher = (
|
|
input: string | URL | globalThis.Request,
|
|
init?: RequestInit,
|
|
) => fetch(input, init).then(res => res.json())
|