Skip to content

Commit

Permalink
typescrip改为typescript (jkchao#103)
Browse files Browse the repository at this point in the history
  • Loading branch information
lmislm authored and jkchao committed Jun 16, 2019
1 parent 7196758 commit edea80b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/typings/overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ reversed[0] = 1; // ok
reversed = [1, 2]; // ok
```

在上个例子中,函数 `reverse` 接受一个类型为 `T`(注意在 `reverse<T>` 中的类型参数) 的数组(`items: T[]`),返回值为类型 T 的一个数组(注意:T[]),函数 `reverse` 的返回值类型与它接受的参数的类型一样。当你传入 `var sample = [1, 2, 3]` 时,TypeScript 能推断出 `reverse``number[]` 类型,从而能给你类型安全。于此相似,当你传入一个类型为 `string[]` 类型的数组时,TypeScrip 能推断 `reverse``string`[] 类型,如下例子所示:
在上个例子中,函数 `reverse` 接受一个类型为 `T`(注意在 `reverse<T>` 中的类型参数) 的数组(`items: T[]`),返回值为类型 T 的一个数组(注意:T[]),函数 `reverse` 的返回值类型与它接受的参数的类型一样。当你传入 `var sample = [1, 2, 3]` 时,TypeScript 能推断出 `reverse``number[]` 类型,从而能给你类型安全。于此相似,当你传入一个类型为 `string[]` 类型的数组时,TypeScript 能推断 `reverse``string`[] 类型,如下例子所示:

```ts
const strArr = ['1', '2'];
Expand Down

0 comments on commit edea80b

Please sign in to comment.