UNPKG

pixie-transformer

Version:

Pixie Transformer is transforming a Raw/Response JSON Payload into your expected JSON Payload. It's make your life easy and convenience without any logic required in your code.

9 lines (8 loc) 280 B
import { Action } from 'redux'; import { Measurement } from '../model/type'; export declare function parseMeasurement(d: any, index: Number, measurement: Measurement): any; export interface MeasurementAction extends Action { name: any; value: number; float: number; }