import { AxiosResponse } from "axios"; const axios = require('axios').default; export const startRecording = async() : Promise => { try { const response = await axios.get('http://localhost:8080/record/start') if (response.status === 200) { return response.data; } else { throw new Error('Couldn\'t start recording'); } } catch(error: any) { return ''; } }; export const stopRecording = async (id: string): Promise => { await axios.get(`http://localhost:8080/record/stop/${id}`) .then((response : AxiosResponse) => { }) .catch((error: any) => { }); };