MessageListParams not in SendBird.min.js

I downloaded the lastest Javascript SDK from https://github.com/sendbird/SendBird-SDK-JavaScript
But this code fails:

    <script src="[path]/SendBird.min.js"></script>
    <script>var p = new MessageListParams();</script>

Why is MessageListParams not in SendBird.min.js?

Other types are fine, e.g. “new SendBird()” works.

It does appear that the MessageListParams is in the SendBird.min.js
Have you tried creating an instance of SendBird, then connecting? Once connected, you should be able to successfully create a new instance of MessageListParams()

In my example, after I created a new instance of SendBird and then connected, I was able to use the following line:

var p = new sb.MessageListParams();