UNPKG

@supunlakmal/hooks

Version:

A collection of reusable React hooks

6 lines (5 loc) 218 B
import { FetchState } from './useFetch'; interface PutOptions extends Omit<RequestInit, 'method'> { } export declare const usePut: <T>(url: string | null | undefined, options?: PutOptions) => FetchState<T>; export {};