mirror of
https://github.com/fosrl/pangolin.git
synced 2025-12-13 19:47:45 +00:00
13 lines
344 B
TypeScript
13 lines
344 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
|
|
} |