UNPKG

@onereach/channel-transformer

Version:

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

9 lines (7 loc) 177 B
import { IGenericText } from "../../../generic/types"; export const transformText = (str: string): IGenericText => ({ type: "text", props: { value: str } });