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

[TypeScript] Overload a Function with TypeScript’s Overload Signatures

时间:2017-11-10 20:08:28      阅读:208      评论:0      收藏:0      [点我收藏+]

标签:surf   arguments   aced   sys   div   param   types   with   type   

Some functions may have different return types depending on the types of the arguments with which they’re invoked. Using TypeScript’s function overloads, you can create an overload for each allowed combination of parameter and return types. This way, all type-correct signatures of a function are encoded in the type system and can be surfaced by the TypeScript Language Service within your editor.

 

/**
 * Reverses the given string.
 * @param string The string to reverse.
 */
function reverse(string: string): string;

/**
 * Reverses the given array.
 * @param array The array to reverse.
 */
function reverse<T>(array: T[]): T[];

function reverse(stringOrArray: string | any[]) {
    return typeof stringOrArray === "string" 
    ? [...stringOrArray].reverse().join("") 
    : stringOrArray.slice().reverse();
}

// [ts] const reversedString: string 
const reversedString = reverse("TypeScript");
// [ts] const reversedArray: number[]
const reversedArray = reverse([4, 8, 15, 16, 23, 42]);
console.log(reversedString)
console.log(reversedArray)

 

[TypeScript] Overload a Function with TypeScript’s Overload Signatures

标签:surf   arguments   aced   sys   div   param   types   with   type   

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

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