7 lines
226 B
TypeScript
7 lines
226 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;
|