11 lines
366 B
TypeScript
11 lines
366 B
TypeScript
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;
|
|
/**
|
|
* prefix a domain name to make sure it complies with letsencrypt
|
|
*/
|
|
export declare let prefixName: (domainNameArg: string) => string;
|