securityos/node_modules/next/dist/lib/mkcert.d.ts

7 lines
229 B
TypeScript
Raw Normal View History

2024-09-06 15:32:35 +00:00
export interface SelfSignedCertificate {
key: string;
cert: string;
rootCA?: string;
}
export declare function createSelfSignedCertificate(host?: string, certDir?: string): Promise<SelfSignedCertificate | undefined>;