Skip to main content
Module

x/polkadot/types/interfaces/metadata/index.ts>StorageEntryTypeV13

Package publishing for deno.land/x/polkadot
Go to Latest
interface StorageEntryTypeV13
implements Enum
import { type StorageEntryTypeV13 } from "https://deno.land/x/polkadot@0.2.25/types/interfaces/metadata/index.ts";

Properties

readonly
isPlain: boolean
readonly
asPlain: Type
readonly
isMap: boolean
readonly
asMap: { readonly hasher: StorageHasherV13; readonly key: Type; readonly value: Type; readonly linked: bool; } & Struct
readonly
isDoubleMap: boolean
readonly
asDoubleMap: { readonly hasher: StorageHasherV13; readonly key1: Type; readonly key2: Type; readonly value: Type; readonly key2Hasher: StorageHasherV13; } & Struct
readonly
isNMap: boolean
readonly
asNMap: { readonly keyVec: Vec<Type>; readonly hashers: Vec<StorageHasherV13>; readonly value: Type; } & Struct
readonly
type:
| "Plain"
| "Map"
| "DoubleMap"
| "NMap"