UNPKG

@golemio/energetics

Version:
12 lines (11 loc) 447 B
import { BaseTransformation, ITransformation } from "@golemio/core/dist/integration-engine/transformations"; export interface IVpalacMeasurement { var_id: string; time_measurement: string; value: number; } export declare class VpalacMeasurementTransformation extends BaseTransformation implements ITransformation { name: string; constructor(); protected transformElement: (data: any) => IVpalacMeasurement[] | undefined; }