import { A_SDK_TYPES__ContextConfigurations } from "@adaas/a-sdk-types"; import { AxiosError, AxiosResponse } from "axios"; export type A_AUTH_TYPES__AuthContext_ResponseFormatter = (response: AxiosResponse, meta?: M) => T export type A_AUTH_TYPES__AuthContext_ErrorHandler = (error: AxiosError, meta?: M) => any export type A_AUTH_TYPES__ContextConfigurations = { auth: { enable?: boolean location?: string } } & A_SDK_TYPES__ContextConfigurations