This code produces an error trying to find a type for a member of `http.Client`. ```go package main import ( "net/http" "github.com/tkrajina/typescriptify-golang-structs/typescriptify" ) type Config struct { URL string `json:"url"` APIKey string `json:"api_key"` *http.Client `json:"-"` } type Wrapper struct { *Config } func main() { converter := typescriptify.New().Add(Wrapper{}) err := converter.ConvertToFile("models.ts") if err != nil { panic(err.Error()) } } ```