budibase/packages/client/src/api/index.ts

10 lines
262 B
TypeScript

import { API } from "./api"
import { patchAPI } from "./patches"
// Certain endpoints which return rows need patched so that they transform
// and enrich the row docs, so that they can be correctly handled by the
// client library
patchAPI(API)
export { API }