@wppconnect/wa-js - v4.6.0
    Preparing search index...

    Interface SendMessageReturn

    interface SendMessageReturn {
        ack: number;
        from?: string;
        id: string;
        latestEditMsgKey?: MsgKey;
        sendMsgResult: whatsapp.SendMsgResultObject | null;
        to?: string;
    }
    Index
    ack: number
    from?: string
    id: string
    latestEditMsgKey?: MsgKey
    sendMsgResult: whatsapp.SendMsgResultObject | null

    The result of the send, already resolved.

    It is null when the send was not waited for, the value is only available with the waitForAck option.

    Note: awaiting it keeps working, a non promise value is awaited as itself, but .then() is not available.

    to?: string