mirror of
https://git.vectorsigma.ru/public/tubearchivist.git
synced 2026-08-05 05:19:30 +00:00
10 lines
218 B
TypeScript
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;
|