Typescript - Data Binding

Hi webix team,
Binding with JavaScript is okay for me, however when im switching to TypeScript im having some issue with data binding.

Below example:
form.bind(settingStore, “$data”);

  • In JavaScript, the code is correct
  • In TypeScript, the “$data” argument is not assignable to type Webix.Callback

try this
form.bind(settingStore, "$data" as any);

Thanks @intregal :smiley: