mirror of
https://github.com/pezkuwichain/pezkuwi-common.git
synced 2026-04-21 23:48:05 +00:00
9 lines
297 B
TypeScript
9 lines
297 B
TypeScript
import type { KeyringPair, KeyringPairs } from './types.js';
|
|
export declare class Pairs implements KeyringPairs {
|
|
#private;
|
|
add(pair: KeyringPair): KeyringPair;
|
|
all(): KeyringPair[];
|
|
get(address: string | Uint8Array): KeyringPair;
|
|
remove(address: string | Uint8Array): void;
|
|
}
|