mirror of
https://github.com/fosrl/pangolin.git
synced 2026-04-28 08:46:59 +00:00
17 lines
381 B
TypeScript
17 lines
381 B
TypeScript
export async function getValidCertificatesForDomains(
|
|
domains: Set<string>,
|
|
useCache: boolean = true
|
|
): Promise<
|
|
Array<{
|
|
id: number;
|
|
domain: string;
|
|
wildcard: boolean | null;
|
|
certFile: string | null;
|
|
keyFile: string | null;
|
|
expiresAt: number | null;
|
|
updatedAt?: number | null;
|
|
}>
|
|
> {
|
|
return []; // stub
|
|
}
|