mirror of
https://git.vectorsigma.ru/public/tubearchivist.git
synced 2026-08-04 23:59:24 +00:00
10 lines
229 B
TypeScript
10 lines
229 B
TypeScript
import APIClient from '../../functions/APIClient';
|
|
|
|
const deleteDownloadById = async (youtubeId: string) => {
|
|
return APIClient(`/api/download/${youtubeId}/`, {
|
|
method: 'DELETE',
|
|
});
|
|
};
|
|
|
|
export default deleteDownloadById;
|