UNPKG

450 BTypeScriptView Raw
1import type { Inspect, Registry } from '@polkadot/types-codec/types';
2import { Enum } from '@polkadot/types-codec';
3export declare class GenericMultiAddress extends Enum {
4 constructor(registry: Registry, value?: unknown);
5 /**
6 * @description Returns a breakdown of the hex encoding for this Codec
7 */
8 inspect(): Inspect;
9 /**
10 * @description Returns the string representation of the value
11 */
12 toString(): string;
13}