type NameOrNameArray = string | string[];
这和 union 不着边啊
if (typeof name === "string") { return name; } else { return name.join(" "); }