继续浏览精彩内容
慕课网APP
程序员的梦工厂
打开
继续
感谢您的支持,我会继续努力的
赞赏金额会直接到老师账户
将二维码发送给自己后长按识别
微信支付
支付宝支付

typescript 笔记 01

khl2016
关注TA
已关注
手记 4
粉丝 0
获赞 0

环境 && hello world

npm install -g typescript
npm install -g ts-node

初始化工程

npm init -y
npm install -D tslib @types/node

添加一个 ts 文件
main.ts

interface Point {
    x: number
    y: number
}

function sayHelo(data: Point) {
    console.log('hello ts')
    return Math.sqrt(data.x ** 2 + data.y ** 2)
}

sayHelo({x: 2, y: 2})

运行

F:\code\webstorm\ts-one>ts-node main.ts
hello ts

F:\code\webstorm\ts-one>
打开App,阅读手记
0人推荐
发表评论
随时随地看视频慕课网APP