- 000
Description
I have two structs defined in go:
type User struct {
ID string `json:"id"`
Name string `json:"name"`
Token string `json:"token"`
}
type Config struct {
User `json:"user"`
RoomID string `json:"roomID"`
}
and wails generated models.ts like
export namespace config {
export cl...