I'd like to use Validate.js plugin in my Typescript project. The problem is that Validate.js has method
collectFormValues: function (form, options)
with hardcoded selector for input fields and it is "name" attribute. I need to use data attr for some reasons.
index.d.ts
file contains "wrapper" interface which defines only 2 public methods so in typescript I don't have any possibility to access "collectFromValues". Any ideas?