import {CurlToJSONResponse, IRestApiContext} from "@/Interface"; import {makeRestApiRequest} from "@/utils"; export function getCurlToJson(context: IRestApiContext, curlCommand: string): Promise { return makeRestApiRequest(context, 'POST', '/curl-to-json', { curlCommand }); }