码迷,mamicode.com
首页 > 其他好文 > 详细

[Typescript] Function defination

时间:2016-04-01 22:02:33      阅读:142      评论:0      收藏:0      [点我收藏+]

标签:

Define a function type and params type:

// The function init
// Accept two params which are both type string
// Return void
const init: (s: string, e: string) => void
  = (start, end) => {
  console.log(start, end);
}

init("start", "end");

 

[Typescript] Function defination

标签:

原文地址:http://www.cnblogs.com/Answer1215/p/5346349.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!