@golemio/pid
Version:
Golemio PID Module
9 lines (8 loc) • 568 B
TypeScript
import { IJISEventCustomFormatDto } from "../../../helpers/jis/interfaces/IJISEventCustomFormatDto";
import { JISEventsModel } from "../../../schema-definitions/jis/models/JISEventsModel";
import { AbstractTransformation } from "@golemio/core/dist/helpers/transformation/AbstractTransformation";
export declare class JISEventsCustomFormatTransformation extends AbstractTransformation<JISEventsModel, IJISEventCustomFormatDto> {
name: string;
protected transformInternal: (event: JISEventsModel) => IJISEventCustomFormatDto;
private effectsToTranslation;
}