mirror of
https://github.com/fosrl/pangolin.git
synced 2026-01-28 22:00:51 +00:00
16 lines
351 B
TypeScript
16 lines
351 B
TypeScript
export async function getValidCertificatesForDomains(
|
|
domains: Set<string>
|
|
): Promise<
|
|
Array<{
|
|
id: number;
|
|
domain: string;
|
|
wildcard: boolean | null;
|
|
certFile: string | null;
|
|
keyFile: string | null;
|
|
expiresAt: number | null;
|
|
updatedAt?: number | null;
|
|
}>
|
|
> {
|
|
return []; // stub
|
|
}
|