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