UNPKG

refine-jsonapi

Version:

Data provider for refine with JSON:API specification. refine is a React-based framework for building internal tools, rapidly. JSON:API is a specification for building apis in JSON.

4 lines (3 loc) 244 B
import { DataProvider } from "@refinedev/core"; import { AxiosInstance } from "axios"; export declare const dataProvider: (apiUrl: string, httpClient?: AxiosInstance) => Omit<Required<DataProvider>, "createMany" | "updateMany" | "deleteMany">;