ts pattern:Type完整的TypeScript模式匹配库具有智能类型推断功能 源码
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
文件列表
ts-pattern-master.zip
(预估有个35文件)
ts-pattern-master
.gitignore
87B
package.json
1KB
ROADMAP.md
988B
package-lock.json
179KB
src
types
DistributeUnions.ts
5KB
Pattern.ts
4KB
Match.ts
5KB
暂无评论