import { callApi } from 'helpers' import { API_ROOT } from 'config' type ResponseSound = { asset: string, } export const getSound = async (id: number | string): Promise => { const config = { method: 'GET', } return callApi({ config, url: `${API_ROOT}/v1/highlights/music/${id}`, }) }