@iotize/device-client.js
Version:
IoTize Device client for Javascript
13 lines (12 loc) • 575 B
TypeScript
import { BitBuffer } from '../../core/buffer/bit-buffer';
import { BodyConverter } from '../../client/api/converter/body/body-converter';
import { UartSettingsConverter } from '../converter/model-converters';
import { UartSettings } from '../model/models';
export declare type UartSettingConverterContextType = {
buffer: BitBuffer;
};
export declare class ReversedUartSettingsConverter implements BodyConverter<UartSettings> {
converter: UartSettingsConverter;
decode(data: Uint8Array): UartSettings;
encode(settings: UartSettings): Uint8Array;
}