最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Typescript and jQuery type. The right way to import jquery type? - Stack Overflow

programmeradmin0浏览0评论

Is it possible to include jquery.d.ts and use jQueryStatic type? I need something like

...
protected el : jQueryStatic;
...

No matter how I try I can not import jQueryStatic interface from

Thanks a lot.

Update

/// <reference path="../../../../defs/jquery.d.ts" />
 error TS2304: Cannot find name 'jQuery'.

/// <reference path="../../../../defs/jquery.d.ts" />
import {jQuery} from 'jquery';
error TS2305: Module '"jquery"' has no exported member 'jQuery'.

Update

Working solution was to add type JQuery not jQuery.

/// <reference path="../../../defs/jquery.d.ts" />
...
protected $el: JQuery;

Is it possible to include jquery.d.ts and use jQueryStatic type? I need something like

...
protected el : jQueryStatic;
...

No matter how I try I can not import jQueryStatic interface from https://github./DefinitelyTyped/DefinitelyTyped/tree/master/jquery

Thanks a lot.

Update

/// <reference path="../../../../defs/jquery.d.ts" />
 error TS2304: Cannot find name 'jQuery'.

/// <reference path="../../../../defs/jquery.d.ts" />
import {jQuery} from 'jquery';
error TS2305: Module '"jquery"' has no exported member 'jQuery'.

Update

Working solution was to add type JQuery not jQuery.

/// <reference path="../../../defs/jquery.d.ts" />
...
protected $el: JQuery;
Share Improve this question edited Feb 10, 2016 at 15:28 zim32 asked Feb 9, 2016 at 4:22 zim32zim32 2,6191 gold badge25 silver badges32 bronze badges
Add a ment  | 

1 Answer 1

Reset to default 8

Based on your code :

el : jQueryStatic

Since you used el I think you meant element and by that the correct interface is actually JQuery:

el : JQuery

But the question you asked for

You can use typeof to convert a variable into a type. More : https://basarat.gitbooks.io/typescript/content/docs/project/declarationspaces.html

Update

The JQuery (not the case) is declared globally. The following works fine:

import * as $ from 'jquery';
var el:JQuery;
发布评论

评论列表(0)

  1. 暂无评论