xiot-core-spec-ts
Version:
XIOT Specification Codec
9 lines (8 loc) • 355 B
TypeScript
import { ArgumentImage } from '../../typedef/image/ArgumentImage';
import { Argument } from '../../typedef/instance/Argument';
export declare class ArgumentImageCodec {
static decodeArray(list: any[]): ArgumentImage[];
static decode(o: any): ArgumentImage;
static encode(def: Argument): any;
static encodeArray(list: Argument[]): any[];
}