• Send a media group in reply to a given quote

    Parameters

    • client: ITelegramClient
    • message: Message
    • params: Omit<
          CommonSendParams & {
              invertMedia?: boolean;
              progressCallback?: (
                  index: number,
                  uploaded: number,
                  total: number,
              ) => void;
          },
          "quoteText"
          | "quoteEntities",
      > & { end: number; start: number; toChatId?: InputPeerLike } & {
          medias: (string | InputMediaLike)[];
      }
      • 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 sendMediaGroup>