UNPKG

@polkadot/types

Version:
9 lines (8 loc) 275 B
import type { Enum } from '@polkadot/types-codec'; /** @name StorageKind */ export interface StorageKind extends Enum { readonly isPersistent: boolean; readonly isLocal: boolean; readonly type: 'Persistent' | 'Local'; } export type PHANTOM_OFFCHAIN = 'offchain';