运行 ❯
获取你自己的
节点
服务器
×
更改方向
更改主题,深色/浅色
转到 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