import * as api from "./base"; import type { CertificateExpansion } from "./expansions"; import type { Certificate } from "./models"; export async function getCertificates(expand?: CertificateExpansion[], params = {}): Promise { return await api.get({ url: "/nginx/certificates", params: { expand: expand?.join(","), ...params, }, }); }