将自定义 .d.ts 文件添加到我的项目中
Add a custom .d.ts file into my project
我正在使用 StamplayAPI Javascript,但是这个库没有设置类型。
所以我created a type .d.ts
for this library and did a pull request。但我不想等待拉取请求被接受才开始使用我的类型。
如何开始将我的类型与 tsd 一起使用?
有什么方法可以安装某种类型的外部资源……比如
tsd install stamplay-js-sdk --source /my/git/repo/or/path/to/folder
只需将 "repo": "Ridermansb/DefinitelyTyped",
放入您的 tsd.json
。
我正在使用 StamplayAPI Javascript,但是这个库没有设置类型。
所以我created a type .d.ts
for this library and did a pull request。但我不想等待拉取请求被接受才开始使用我的类型。
如何开始将我的类型与 tsd 一起使用?
有什么方法可以安装某种类型的外部资源……比如
tsd install stamplay-js-sdk --source /my/git/repo/or/path/to/folder
只需将 "repo": "Ridermansb/DefinitelyTyped",
放入您的 tsd.json
。