feat(tsgen): tsgen export buildTypes function (#4197)

This commit is contained in:
jaron
2024-07-22 20:11:06 +08:00
committed by GitHub
parent 944ac383d2
commit 6e08d478fe

View File

@@ -62,3 +62,7 @@ func buildTypes(types []spec.Type) (string, error) {
return builder.String(), nil
}
func BuildTypes(types []spec.Type) (string, error) {
return buildTypes(types)
}