@iotize/tap
Version:
IoTize Device client for Javascript
25 lines (24 loc) • 779 B
TypeScript
/**
* This file was automatically generated by json-schema-to-typescript.
* DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file,
* and run json-schema-to-typescript to regenerate this file.
*/
export interface SlaveServerRawConfig {
channel: SlaveServerRawConfig.Channel;
length: number;
config: Uint8Array;
}
export declare namespace SlaveServerRawConfig {
/**
* This file was automatically generated by json-schema-to-typescript.
* DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file,
* and run json-schema-to-typescript to regenerate this file.
*/
enum Channel {
DISABLED = 0,
MODBUS_RTU = 1,
SPI = 2,
CAN = 3,
MODBUS_TCP = 4
}
}