• Send a text in reply to a given quote

    Parameters

    • client: ITelegramClient
    • message: Message
    • params: Omit<
          CommonSendParams & {
              disableWebPreview?: boolean;
              invertMedia?: boolean;
              replyMarkup?: ReplyMarkup;
          },
          "quoteText"
          | "quoteEntities",
      > & { end: number; start: number; toChatId?: InputPeerLike } & {
          text: InputText;
      }
      • end: number

        Index of the last character to quote (exclusive)

      • start: number

        Index of the first character to quote (inclusive)

      • OptionaltoChatId?: InputPeerLike

        Destination chat ID, username, phone, "me" or "self"

        message.chat

    Returns ReturnType<typeof sendText>