mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
5 lines
329 B
TypeScript
5 lines
329 B
TypeScript
import { createCA, createCert } from 'mkcert';
|
|
|
|
createCA({countryCode: "US", locality: "Redmond", organization: "test cert", state: "WA", validityDays: 365}); // $ExpectType Promise<Certificate>
|
|
createCert({domains: ["localhost"], caKey : "test key", caCert: "test cert", validityDays: 365}); // $ExpectType Promise<Certificate>
|