Fix broken links to .d.ts file. PR401

This commit is contained in:
zhongsp 2016-10-07 14:55:50 +08:00
parent 90b5c63a34
commit ac67f0c204

View File

@ -76,7 +76,7 @@ window.createGreeting = function(s) {
### 全局库模版
模版文件[`global.d.ts`](./templates/global.d.ts)定义了`myLib`库作为例子。
模版文件[`global.d.ts`](./templates/global.d.ts.md)定义了`myLib`库作为例子。
一定要阅读["防止命名冲突"补充说明](#preventing-name-conflicts)。
## 模块化库
@ -176,9 +176,9 @@ UMD库的文档里经常会包含通过`require`“在Node.js里使用”例子
### 模版
针对模块有三种可用的模块,
[`module.d.ts`](./templates/module.d.ts), [`module-class.d.ts`](./templates/module-class.d.ts) and [`module-function.d.ts`](./templates/module-function.d.ts).
[`module.d.ts`](./templates/module.d.ts.md), [`module-class.d.ts`](./templates/module-class.d.ts.md) and [`module-function.d.ts`](./templates/module-function.d.ts.md).
使用[`module-function.d.ts`](./templates/module-function.d.ts),如果模块能够作为函数*调用*。
使用[`module-function.d.ts`](./templates/module-function.d.ts.md),如果模块能够作为函数*调用*。
```ts
var x = require("foo");
@ -188,7 +188,7 @@ var y = x(42);
一定要阅读[补充说明: “ES6模块调用签名的影响”](#the-impact-of-es6-on-module-call-signatures)
使用[`module-class.d.ts`](./templates/module-class.d.ts)如果模块能够使用`new`来*构造*
使用[`module-class.d.ts`](./templates/module-class.d.ts.md)如果模块能够使用`new`来*构造*
```ts
var x = require("bar");
@ -198,7 +198,7 @@ var y = new x("hello");
相同的[补充说明](#the-impact-of-es6-on-module-plugins)作用于这些模块。
如果模块不能被调用或构造,使用[`module.d.ts`](./templates/module.d.ts)文件。
如果模块不能被调用或构造,使用[`module.d.ts`](./templates/module.d.ts.md)文件。
## *模块插件*或*UMD插件*
@ -209,7 +209,7 @@ var y = new x("hello");
### 模版
使用[`module-plugin.d.ts`](./templates/module-plugin.d.ts)模版。
使用[`module-plugin.d.ts`](./templates/module-plugin.d.ts.md)模版。
## *全局插件*
@ -236,7 +236,7 @@ console.log(y.reverseAndSort());
### 模版
使用[`global-plugin.d.ts`](./templates/global-plugin.d.ts)模版。
使用[`global-plugin.d.ts`](./templates/global-plugin.d.ts.md)模版。
## *全局修改的模块*
@ -269,7 +269,7 @@ console.log(y.reverseAndSort());
### 模版
使用[`global-modifying-module.d.ts`](https://github.com/zhongsp/TypeScript/tree/master/doc/handbook/declaration%20files/templates/global-modifying-module.d.ts)模版。
使用[`global-modifying-module.d.ts`](./templates/global-modifying-module.d.ts.md)模版。
# <a name="consuming-dependencies"></a>使用依赖