AI写作智能体 自主规划任务,支持联网查询和网页读取,多模态高效创作各类分析报告、商业计划、营销方案、教学内容等。 广告
>[success] # Exclude -- 从联合类型中去除指定的类 ~~~ 1.从联合类型中去掉指定类型 ~~~ >[danger] ##### 源码 ~~~ type Exclude<T, U> = T extends U ? never : T; ~~~ >[danger] ##### 案例 ~~~ type T = Exclude<'a' | 'b' | 'c', 'a'>; // => 'b' | 'c' ~~~