wilddragon-site/node_modules/next/dist/lib/mkcert.d.ts

7 lines
229 B
TypeScript
Raw Normal View History

2026-04-17 15:51:01 -04:00
export interface SelfSignedCertificate {
key: string;
cert: string;
rootCA?: string;
}
export declare function createSelfSignedCertificate(host?: string, certDir?: string): Promise<SelfSignedCertificate | undefined>;