xiot-core-spec-ts
Version:
XIOT Specification Codec
8 lines (7 loc) • 331 B
TypeScript
import { ActionDefinition } from '../../typedef/definition/ActionDefinition';
export declare class ActionDefinitionCodec {
static decodeArray(list: any[]): ActionDefinition[];
static decode(o: any): ActionDefinition;
static encode(def: ActionDefinition): any;
static encodeArray(list: ActionDefinition[]): any[];
}