UNPKG

@onereach/channel-transformer

Version:

Convert data model between different channels (Slack, Microsoft Teams, Generic...)

10 lines (8 loc) 240 B
import { IZendeskContent } from "../../types"; import { IGenericText } from "../../../generic/types"; export const transformText = ({ text }: IZendeskContent): IGenericText => ({ type: "text", props: { value: text, } });