10 lines
250 B
TypeScript
10 lines
250 B
TypeScript
|
/// <reference types="node" />
|
||
|
import { VerifyKeyObjectInput } from 'crypto';
|
||
|
interface KeyInfo {
|
||
|
keyType: string;
|
||
|
scheme: string;
|
||
|
keyVal: string;
|
||
|
}
|
||
|
export declare function getPublicKey(keyInfo: KeyInfo): VerifyKeyObjectInput;
|
||
|
export {};
|