UNPKG

453 BTypeScriptView Raw
1import type { Registry } from '@polkadot/types-codec/types';
2import type { HexString } from '@polkadot/util/types';
3import { MetadataVersioned } from './MetadataVersioned.js';
4/**
5 * @name Metadata
6 * @description
7 * The versioned runtime metadata as a decoded structure
8 */
9export declare class Metadata extends MetadataVersioned {
10 constructor(registry: Registry, value?: Uint8Array | HexString | Map<string, unknown> | Record<string, unknown>);
11}