mirror of
https://github.com/NginxProxyManager/nginx-proxy-manager.git
synced 2025-09-23 15:00:34 +00:00
8 lines
168 B
TypeScript
8 lines
168 B
TypeScript
import * as api from "./base";
|
|
|
|
export async function deleteProxyHost(id: number): Promise<boolean> {
|
|
return await api.del({
|
|
url: `/nginx/proxy-hosts/${id}`,
|
|
});
|
|
}
|