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.
17 lines
324 B
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}`,
|
|
})
|
|
}
|
|
|