ts模式 具有智能类型推断功能的完整模式匹配库。 import { match } from 'ts-pattern' ; type Data = | { type : 'text' ; content : string } | { type : 'img' ; src : string } | ... ; // Imagine this union is huge! type Result = | { type : 'ok' ; data : Data } | { type : 'error' ; error : Error } ; const result : Res