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

[Typescript] Function Overloads

时间:2020-10-06 21:25:22      阅读:39      评论:0      收藏:0      [点我收藏+]

标签:span   pre   oom   rgba   function   ever   rev   type   string   

function reverse(str: string): string;
function reverse<T>(arr: T[]): T[];
function reverse<T>(stringOrArray: string | T[]): string | T[] {
  if (typeof stringOrArray === ‘string‘) {
    return stringOrArray
      .split(‘‘)
      .reverse()
      .join(‘‘);
  }
  return stringOrArray.slice().reverse();
}

reverse(‘Pepperoni‘);
reverse([‘bacon‘, ‘pepperoni‘, ‘chili‘, ‘mushrooms‘]);

Function overload doesn‘t compile to Javascript, it is just a way to tell typescript about type information

[Typescript] Function Overloads

标签:span   pre   oom   rgba   function   ever   rev   type   string   

原文地址:https://www.cnblogs.com/Answer1215/p/13774097.html

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