You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
spa_instat_tv/src/requests/getSound.tsx

17 lines
324 B

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