UNPKG

@iotize/device-client.js

Version:

IoTize Device client for Javascript

5 lines (4 loc) 187 B
export interface Decoder<InputType, OutputType> { decode(type: InputType): OutputType; } export declare type DecoderFct<InputType, OutputType> = (input: InputType) => OutputType;