UNPKG

708 BTypeScriptView Raw
1import { VoidContractParameterJSON } from '@neo-one/client-common';
2import { DeserializeWireBaseOptions, SerializeJSONContext } from '../Serializable';
3import { ContractParameterBase } from './ContractParameterBase';
4import { ContractParameterType } from './ContractParameterType';
5export declare class VoidContractParameter extends ContractParameterBase<VoidContractParameter, VoidContractParameterJSON, ContractParameterType.Void> {
6 static deserializeWireBase(options: DeserializeWireBaseOptions): VoidContractParameter;
7 readonly type = ContractParameterType.Void;
8 readonly size: number;
9 asBoolean(): boolean;
10 serializeJSON(_context: SerializeJSONContext): VoidContractParameterJSON;
11}