Domanda

I'm creating a method in TypeScript that should receive a jQuery selector as a parameter and I want to make it strongly typed by using DefinitelyTyped. How should my method be like?

Example:

class Foo {
    constructor($el: jQuerySelector) {
    }
}

What should I replace jQuerySelector with?

È stato utile?

Soluzione

e.g. $('div') in the DefinitelyTyped jquery.d.ts is named JQuery.

Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a StackOverflow
scroll top