UNPKG

o3-dapi-ont

Version:
15 lines (13 loc) 252 B
export enum ParameterType { BOOLEAN = 'Boolean', INTEGER = 'Integer', BYTEARRAY = 'ByteArray', STRUCT = 'Struct', MAP = 'Map', STRING = 'String', ADDRESS = 'Address', } export interface Parameter { type: ParameterType; value: any; }