@polkadot/util-keyring
Version:
10 lines (9 loc) • 317 B
TypeScript
import { KeyringPairs, KeyringPair } from './types';
export default class Pairs implements KeyringPairs {
private _map;
constructor();
add(pair: KeyringPair): KeyringPair;
all(): Array<KeyringPair>;
get(address: string | Uint8Array): KeyringPair;
remove(address: string | Uint8Array): void;
}