mirror of
https://github.com/NginxProxyManager/nginx-proxy-manager.git
synced 2025-12-21 19:39:17 +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}`,
|
|
});
|
|
}
|