You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
219 B

### 变量
let 变量名: 变量类型
函数:
function 函数名(参数名:参数类型):返回值类型{
}
### 数据类型ts新增
- any
- unknown
- never
- void
- tuple
- enum
- type
- interface