const { data } = await axios.get<any, AxiosResponse<ArrayBuffer>>(imageUrl, { responseType: "arraybuffer", }); const imageBuffer = Buffer.from(data);