文字类型·
TypeType旨在轻松生成复杂的打字稿类型。
游乐场: :
用法
> npm i -D @mistlog/typetype
import { transform } from "@mistlog/typetype" ;
const input = `
type function TypeName = (T) => ^{
if(T extends string) {
return "string"
} else {
return "number"
}
}
` ;
const output = transform ( input ) . code ;
console . log ( output ) ;
// output: type TypeName
1