UNPKG

@iotize/device-client.js

Version:

IoTize Device client for Javascript

5 lines (4 loc) 186 B
export interface Encoder<InputType, OutputType> { encode(type: InputType): OutputType; } export declare type EncoderFct<InputType, OutputType> = (type: InputType) => OutputType;