```swift @JSClass struct User { @JSGetter var stats: Stats @JSClass struct Stats { // ❌ Can't be nested inside User @JSGetter var health: Int } } ``` Feel free to close this issue if this is an intended limitation rather than a bug.