5 lines
147 B
TypeScript
5 lines
147 B
TypeScript
export declare function createSelfSignedCertificate(host?: string, certDir?: string): Promise<{
|
|
key: string;
|
|
cert: string;
|
|
} | undefined>;
|