Files
lcbp3.np-dms.work/frontend/node_modules/next/dist/lib/mkcert.d.ts
2025-09-21 20:29:15 +07:00

7 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>;