UNPKG

tdc-js-modules

Version:

10 lines (9 loc) 288 B
import { AxiosResponse } from 'axios'; export type UsePostConfigType = { initialValue?: any; transformFunction?: (data: any) => any }; export type UsePostReturnType<T> = { data: T; loading: boolean; error: any; post: (body: any) => void; response: AxiosResponse | undefined; };