xiot-core-spec-ts
Version:
XIOT Specification Codec
8 lines (7 loc) • 324 B
TypeScript
import { EventTemplate } from '../../typedef/template/EventTemplate';
export declare class EventTemplateCodec {
static decodeArray(array: any[]): EventTemplate[];
static decode(o: any): EventTemplate;
static encode(event: EventTemplate): any;
static encodeArray(events: Map<number, EventTemplate>): any[];
}