import { OrmGenerics } from "../types/ormGenerics"; import { DetermineResponseDataType, iRest, RequestQueryBody } from "../types/ormInterfaces"; /** * Facade: routes API calls to SQL or HTTP executors based on runtime context. */ export default function restRequest(configX: (() => iRest) | iRest): (request: RequestQueryBody) => Promise>;