執行 ❯
Node 伺服器
×
更改方向
更改主題,深色/淺色
前往 Spaces
type Primitive = string | number | boolean; const value: Exclude<Primitive, string> = true; // a string cannot be used here since Exclude removed it from the type. console.log(typeof value);
boolean