5 lines
133 B
TypeScript
5 lines
133 B
TypeScript
|
import { KeyPair } from './smartcrypto.classes.keypair';
|
||
|
export declare class Smartcrypto {
|
||
|
createKeyPair(): Promise<KeyPair>;
|
||
|
}
|