UNPKG

297 BTypeScriptView Raw
1import type { KeyringPair, KeyringPairs } from './types.js';
2export declare class Pairs implements KeyringPairs {
3 #private;
4 add(pair: KeyringPair): KeyringPair;
5 all(): KeyringPair[];
6 get(address: string | Uint8Array): KeyringPair;
7 remove(address: string | Uint8Array): void;
8}