Type alias AnyRegularMessageContent

AnyRegularMessageContent: ({
    linkPreview?: WAUrlInfo | null;
    text: string;
} & Mentionable & Contextable & Buttonable & Templatable & Listable & Editable | AnyMediaMessageContent | {
    poll: PollMessageOptions;
} & Mentionable & Contextable & Buttonable & Templatable & Editable | {
    contacts: {
        contacts: IContactMessage[];
        displayName?: string;
    };
} | {
    location: WALocationMessage;
} | {
    react: IReactionMessage;
} | {
    buttonReply: ButtonReplyInfo;
    type: "template" | "plain";
} | {
    listReply: Omit<IListResponseMessage, "contextInfo">;
} | {
    body?: string;
    businessOwnerJid?: string;
    footer?: string;
    product: WASendableProduct;
} | SharePhoneNumber | RequestPhoneNumber) & ViewOnce

Generated using TypeDoc