@golemio/energetics
Version:
Golemio Energetics Module
12 lines (11 loc) • 447 B
TypeScript
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;
}