xiot-core-spec-ts
Version:
XIOT Specification Codec
7 lines (6 loc) • 307 B
TypeScript
import { DataFormat } from '../../typedef/definition/property/data/DataFormat';
import { ValueRange } from '../../typedef/definition/property/ValueRange';
export declare class ValueRangeCodec {
static decode(format: DataFormat, range: any[]): ValueRange;
static encode(values: ValueRange): any[];
}