xiot-core-message-ts
Version:
10 lines (9 loc) • 434 B
TypeScript
import { IQCodec } from '../IQCodec';
import { IQQuery } from '../../typedef/iq/IQQuery';
import { IQResult } from '../../typedef/iq/IQResult';
export declare class SetPropertiesCodec implements IQCodec {
encodeQueryContent(query: IQQuery): any | null;
encodeResultContent(result: IQResult): any | null;
decodeQuery(id: string, content: any): IQQuery | null;
decodeResult(id: string, content: any): IQResult | null;
}