wilddragon-site/node_modules/next/dist/lib/mkcert.d.ts
2026-04-17 15:51:01 -04:00

6 lines
229 B
TypeScript
Executable file

export interface SelfSignedCertificate {
key: string;
cert: string;
rootCA?: string;
}
export declare function createSelfSignedCertificate(host?: string, certDir?: string): Promise<SelfSignedCertificate | undefined>;