method Client.prototype.editMessageTextimport { Client } from "https://deno.land/x/mtkruto@0.1.118/mod.ts"; editMessageText(chatId: ChatID,messageId: number,text: string,params?: EditMessageParams,): Promise<With<Message, "text">>Edit a message's text. ParameterschatId: ChatIDThe chat where the message is. messageId: numberThe ID of the message. text: stringThe new text of the message. optionalparams: EditMessageParamsReturnsPromise<With<Message, "text">>The edited text message.