UNPKG

585 BTypeScriptView Raw
1import BN from 'bn.js';
2import { DeserializeWireBaseOptions } from '../Serializable';
3import { LogAction } from './LogAction';
4import { NotificationAction } from './NotificationAction';
5export interface ActionsKey {
6 readonly indexStart?: BN;
7 readonly indexStop?: BN;
8}
9export interface ActionKey {
10 readonly index: BN;
11}
12export declare type Action = LogAction | NotificationAction;
13export declare const deserializeActionWireBase: (options: DeserializeWireBaseOptions) => Action;
14export declare const deserializeActionWire: import("../Serializable").DeserializeWire<Action>;