7 lines
166 B
TypeScript
7 lines
166 B
TypeScript
import fetcher from "../../fetcher";
|
|
|
|
export async function remove(userId: string) {
|
|
return fetcher(`/admin/user/${userId}`, {
|
|
method: 'DELETE',
|
|
})
|
|
}
|