horse-betting/btc-ui-app-2/node_modules/@tufjs/models/dist/utils/key.d.ts
2025-06-19 16:39:08 +05:30

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 {};