ts 定义函数的返回类型

export function make(obj, conditions): string {} 

function make(obj, conditions): string:
这是函数的定义,它有两个参数 obj 和 conditions。
参数类型没有明确指定,因此可以是任意类型(如对象、数组、字符串等)。
函数返回值的类型是字符串(string)。

你可能感兴趣的:(ts,前端)