DefinitelyTyped/types/mkcert/mkcert-tests.ts
Sachin A 4da4730d44 mkcert npm package typings (#33819)
* mkcert package typings

* Fixed linting errors

* Fixed tests
2019-03-12 14:12:54 -07:00

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>