mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2026-02-15 05:12:47 +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>
|