9 lines
219 B
TypeScript
9 lines
219 B
TypeScript
import { VerifyKeyObjectInput } from 'crypto';
|
|
interface KeyInfo {
|
|
keyType: string;
|
|
scheme: string;
|
|
keyVal: string;
|
|
}
|
|
export declare function getPublicKey(keyInfo: KeyInfo): VerifyKeyObjectInput;
|
|
export {};
|