@golemio/pid
Version:
Golemio PID Module
14 lines (13 loc) • 695 B
TypeScript
import { IV4InfotextTransferOutputDto } from "../../domain/InfotextInterfaces";
import { AbstractTransformation } from "@golemio/core/dist/helpers/transformation/AbstractTransformation";
import { IJISInfotextDto } from "../../../../schema-definitions/jis/redis/interfaces/IJISInfotextDto";
export declare class JISInfotextCacheTransferTransformation extends AbstractTransformation<IJISInfotextDto, IV4InfotextTransferOutputDto> {
name: string;
protected transformInternal: (infotext: IJISInfotextDto) => {
display_type: import("../../domain/InfotextDisplayTypeEnum").InfotextDisplayType;
text: {
cs: string;
en: string | null;
};
};
}