MJingv / jehol-person-blog

Jehol's Blog 🙋 (hexo+react)
https://mjingv.github.io/JeholBlog/
0 stars 1 forks source link

typescript了解一下? #51

Open MJingv opened 5 years ago

MJingv commented 5 years ago

深入理解 TypeScript

typescript使用

ts基础类型(特别要看的)

ts变量

ts联合类型(Union Types)

ts接口

MJingv commented 3 years ago

TypeScript 入门教程 学习笔记

void

any

union(联合类型)

interface(接口)

Function

Type Assertion(类型断言)

声明文件

内置对象

Tuple(元祖)

Enum(枚举)

enum Days {Sun, Mon, Tue, Wed, Thu, Fri, Sat};

Class(类)

基础概念

ES6

ES7

TS