@golemio/pid
Version:
Golemio PID Module
12 lines (11 loc) • 656 B
TypeScript
import { IInfotextTransferOutputDto } from "../../domain/InfotextInterfaces";
import { JISInfotextsModel } from "../../../../schema-definitions/jis/models/JISInfotextsModel";
import { AbstractTransformation } from "@golemio/core/dist/helpers/transformation/AbstractTransformation";
export declare class JISInfotextTransferTransformation extends AbstractTransformation<JISInfotextsModel, IInfotextTransferOutputDto> {
name: string;
protected transformInternal: (infotext: JISInfotextsModel) => {
display_type: import("../../domain/InfotextDisplayTypeEnum").InfotextDisplayType;
text: string;
text_en: string | null;
};
}