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