Files
call-sdk/packages/common/dist/utils/getResponseWithoutCors.d.ts

13 lines
509 B
TypeScript
Raw Normal View History

2024-10-29 18:07:27 +05:30
import { default as RequestType } from '../types/RequestType.ts';
import { default as GenericObject } from '../types/GenericObject.ts';
type GetResponseWithoutCors = {
url: string;
method: string;
data?: GenericObject | string;
requestKey: string;
requestType?: RequestType;
headers?: GenericObject | null;
};
export declare const getResponseWithoutCors: ({ url, method, data, requestKey, requestType, headers }: GetResponseWithoutCors) => void;
export default getResponseWithoutCors;