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