2017-01-14 17:36:33 +00:00
|
|
|
import 'typings-global';
|
|
|
|
import { IRsaKeypair } from './smartacme.classes.smartacme';
|
|
|
|
/**
|
|
|
|
* creates a keypair to use with requests and to generate JWK from
|
|
|
|
*/
|
|
|
|
export declare let createKeypair: (bit?: number) => IRsaKeypair;
|
2017-01-15 21:30:33 +00:00
|
|
|
/**
|
|
|
|
* prefix a domain name to make sure it complies with letsencrypt
|
|
|
|
*/
|
|
|
|
export declare let prefixName: (domainNameArg: string) => string;
|