UNPKG

275 BTypeScriptView Raw
1import type { Enum } from '@polkadot/types-codec';
2/** @name StorageKind */
3export interface StorageKind extends Enum {
4 readonly isPersistent: boolean;
5 readonly isLocal: boolean;
6 readonly type: 'Persistent' | 'Local';
7}
8export type PHANTOM_OFFCHAIN = 'offchain';