Skip to main content
Module

x/polkadot/types-create/types/types.ts

Package publishing for deno.land/x/polkadot
Go to Latest
File

export enum TypeDefInfo { BTreeMap, BTreeSet, Compact, DoNotConstruct, Enum, HashMap, Int, Linkage, Null, Option, Plain, Range, RangeInclusive, Result, Set, Si, Struct, Tuple, UInt, Vec, VecFixed, WrapperKeepOpaque, WrapperOpaque}
export interface TypeDef { alias?: Map<string, string>; displayName?: string; docs?: string[]; fallbackType?: string; info: TypeDefInfo; index?: number; isFromSi?: boolean; length?: number; lookupIndex?: number; lookupName?: string; lookupNameRoot?: string; name?: string; namespace?: string; sub?: TypeDef | TypeDef[]; type: string; typeName?: string;}