UNPKG

234 BTypeScriptView Raw
1import type { KeyringOptions, KeyringPair } from './types';
2export interface TestKeyringMap {
3 [index: string]: KeyringPair;
4}
5export declare function createTestPairs(options?: KeyringOptions, isDerived?: boolean): TestKeyringMap;