2

我正在尝试获取 ngCordova 类型,但 tsd 和类型均失败:

如果我执行:

tsd install ng-cordova --save

它输出;

零结果

如果我执行:

typings install dt~ng-cordova --save --global

它输出:

打字错误!消息无法在注册表中找到“ng-cordova”(“dt”)。您想尝试搜索其他来源吗?另外,如果您想贡献这些类型,请帮助我们: https ://github.com/typings/registry typings ERR!由 https://api.typings.org/entries/dt/ng-cordova/versions/latest引起的 响应为 404,预计等于 200

我也试过搜索,但也没有看

tsd query ng-cordova

输出;

零结果

typings search --name ng-cordova

输出:

未找到搜索结果

ngCordova 分型发生了什么?我知道他们在那里:https ://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/ng-cordova

如何获得 ngCordova 的类型?

4

1 回答 1

4

尝试使用以下搜索单个ng-cordova服务的所有类型:

typings search ng-cordova

这将返回结果

查看 17 of 17 名称 来源 主页 描述 版本 更新
ng-cordova/actionsheet dt https://github.com/driftyco/ng-cordova 1 2016-03-16T17:18:10.000Z ng-cordova/appavailability dt https:// github.com/driftyco/ng-cordova 1 2016-03-16T17:18:10.000Z ng-cordova/app-version dt https://github.com/driftyco/ng-cordova 1 2016-03-16T17:18: 10.000Z ng-cordova/badge dt https://github.com/driftyco/ng-cordova 1 2016-03-16T17:18:10.000Z ng-cordova/camera dt https://github.com/driftyco/ng-cordova 1 2016-03-16T17:18:10.000Z ng-cordova/datepicker dt https:// /github.com/VitaliiBlagodir/cordova-plugin-datepicker
ng-cordova/device dt https://github.com/driftyco/ng-cordova 1 2016-03-16T17:18:10.000Z ng-cordova/devicemotion dt https: //github.com/driftyco/ng-cordova 1 2016-03-16T17:18:10.000Z ng-cordova/deviceorientation dt https://github.com/driftyco/ng-cordova 1 2016-03-16T17:18:10.000Z ng-cordova/dialogs dt https://github.com/driftyco/ng-cordova 1 2016-03-16T17:18:10.000Z ng-cordova/emailcomposer dt https:// /github.com/driftyco/ng-cordova 1 2016-03-16T17:18:10.000Z ng-cordova/file dt https://github.com/driftyco/ng-cordova 1 2016-03-16T17:18:10.000 Z ng-cordova/filetransfer dt https://github.com/driftyco/ng-cordova 1 2016-03-16T17:18:10.000Z ng-cordova/geolocation dt https://github.com/driftyco/ng-cordova 1 2016-03-16T17:18:10.000Z ng-cordova/network dt https://github.com/driftyco/ng-cordova 1 2016-03-16T17:18:10.000Z ng-cordova/toast dt https:// /github.com/driftyco/ng-cordova 1 2016-03-16T17:18:10.000Z ng-cordova/tsd dt https://github.com/driftyco/ng-cordova 1 2015-12-02T00:06:10.000 Z

因此,根据上述结果,您可以搜索特定类型:

typings search ng-cordova/toast

找到打字后,您可以按如下方式安装它:

typings install ng-cordova/toast

注意:以上所有内容都适用于类型版本0.8.1

于 2016-06-02T05:03:06.053 回答