UNPKG

@golemio/energetics

Version:
9 lines (8 loc) 556 B
import { AbstractTransformation } from "@golemio/core/dist/helpers/transformation/AbstractTransformation"; import { IPreCsvInput } from "../../schema-definitions/datasources/interfaces/IPreCsvInput"; import { IPreEanMeasurement } from "../../integration-engine/commodity-providers/workers/interfaces/IPreEanMeasurement"; export declare class PreCsvInputTransformation extends AbstractTransformation<IPreCsvInput[], IPreEanMeasurement> { name: string; protected transformInternal: (data: IPreCsvInput[]) => IPreEanMeasurement; private getEan; }