Typescript Firebase定义文件,Promises

时间:2016-01-27 12:46:06

标签: typescript firebase

我正在尝试使用此定义文件在Typescript中使用与Firebase的promises:https://www.nuget.org/packages/firebase.TypeScript.DefinitelyTyped/ 但是我试图使用promises时遇到这个错误:Supplied parameters do not match any signature of call target.我想这是因为定义文件不支持Promises吗?我刚开始收到Typescript,有人能告诉我如何更改定义文件以支持promises吗?

1 个答案:

答案 0 :(得分:0)

在撰写本文时,Firebase的定义文件支持Promise: firebase.d.ts

但是,您仍然需要安装es6-promise软件包,或者为ES6配置tsc。更多细节可以在其他SO问题中找到: How to use Typescript with native ES6 Promises

相关问题