nooktheme/resources/scripts/api/server/network/deleteServerAllocation.ts
mowetentertainment1 eb5b65cec6 initial commit
2025-11-01 19:45:11 -04:00

6 lines
237 B
TypeScript

import { Allocation } from '@/api/server/getServer';
import http from '@/api/http';
export default async (uuid: string, id: number): Promise<Allocation> =>
await http.delete(`/api/client/servers/${uuid}/network/allocations/${id}`);