UNPKG

xiot-core-xcp-ts

Version:
10 lines (9 loc) 442 B
import { IqCodec } from '../../IqCodec'; import { IQQuery } from '../../../typedef/iq/IQQuery'; import { IQResult } from '../../../typedef/iq/IQResult'; export declare class ByebyeCodec implements IqCodec { encodeQueryContent(query: IQQuery): any | null; encodeResultContent(result: IQResult): any | null; decodeQuery(id: string, content: Object): IQQuery | null; decodeResult(id: string, content: Object): IQResult | null; }