Alternatives of instance.UI.disableReplyForAnnotations

WebViewer Version: 10.0.1

Is there any option so that I can disable all reply action on a webviewer?
I am thinking something like this:

WebViewer({
        path: '/WebViewer/lib',
        licenseKey: licKey,
        initialDoc: targetUrl,
        isReadOnly: readOnly,
        disableAllReply: true  // ← something like this
}, document.getElementById('viewer'));

Instead of relying on the instance after the WebViewer frame is created, so that this setting will not loss if the user tries to click “reload this frame”.

If you use this API like this it will disable reply for all annotations, wouldn’t this work for you?

instance.UI.disableReplyForAnnotations((annotation) => {
      return true;
    });