typescript 打字稿cheatsheet

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了typescript 打字稿cheatsheet相关的知识,希望对你有一定的参考价值。

any
void

boolean
number
string

null
undefined

string[]          /* or Array<string> */
[string, number]  /* tuple */

string | null | undefined   /* union */

never  /* unreachable */

//------------------------

----

//Declarations


let isDone: boolean
let isDone: boolean = false

function add (a: number, b: number): number {
  return a + b
}

// Return type is optional
function add (a: number, b: number) { ... }


以上是关于typescript 打字稿cheatsheet的主要内容,如果未能解决你的问题,请参考以下文章

markdown 打字稿Cheatsheet

typescript 打字稿鸭打字

Typescript 2 + Angular googlemaps 打字稿定义

typescript 打字稿泛型示例

typescript 打字稿工厂示例

typescript 打字稿纯函数示例