Files
tubearchivist/frontend/src/api/actions/deleteChannel.ts
2025-01-07 23:13:48 +07:00

10 lines
218 B
TypeScript

import APIClient from '../../functions/APIClient';
const deleteChannel = async (channelId: string) => {
return APIClient(`/api/channel/${channelId}/`, {
method: 'DELETE',
});
};
export default deleteChannel;