mirror of
https://github.com/NginxProxyManager/nginx-proxy-manager.git
synced 2025-12-22 03:49:47 +00:00
8 lines
171 B
TypeScript
8 lines
171 B
TypeScript
import * as api from "./base";
|
|
|
|
export async function deleteCertificate(id: number): Promise<boolean> {
|
|
return await api.del({
|
|
url: `/nginx/certificates/${id}`,
|
|
});
|
|
}
|