我正在将一个小项目转换为TypeScript 1.9以尝试学习该语言。我一直在使用一个名为tinycolor的库,我为它下载了一个声明文件。
可在此处查看该文件:https://github.com/DefinitelyTyped/DefinitelyTyped/blob/master/tinycolor/tinycolor.d.ts
我遇到了像
这样的错误C:\ Users \ kbirger \ Documents \ Projects \ peysage \ ts \ typings \ tinycolor \ tinycolor.d.ts(339,9):错误TS1005:';'预期
相关的代码行在这里:
declare namespace Readable {
interface Readable {
brightness: number;
color: number;
}
}
我不确定问题是什么。对我来说看起来是正确的语法,而且当我在TypeScript网站上通过操场运行时,我没有任何抱怨。
任何人都能解释一下吗?