type annotation of editor.inline

type annotation of editor.inline

joshhsiaojoshhsiao Posts: 2Questions: 2Answers: 0

Debugger code (debug.datatables.net):

dt.on('click', 'tbody td:not(:first-child)', function () {
    editor.inline(this, {
      onBlur: 'submit' // 'submit', 'cancel', 'close'
      // submit: 'allIfChanged' // 'all', 'changed', 'allIfChanged'
    })
  })

Error messages shown:
'this' implicitly has type 'any' because it does not have a type annotation.
Description of problem:
Typescript complain 'this' parameter have no type annotation. How can solve this problem?

Answers

Sign In or Register to comment.