import * as api from "./base"; export async function deleteUser(id: number): Promise { return await api.del({ url: `/users/${id}`, }); }