void 这个类型仅能在函数中使用,可以将函数的返回类型指定为 void,表示该函数不返回任何值。代码如下: function warnUser(): void { alert("This is my warning message"); }