13 lines
No EOL
344 B
TypeScript
13 lines
No EOL
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
|
|
} |