chaokunyang opened a new issue, #3130:
URL: https://github.com/apache/fory/issues/3130
### Feature Request
_No response_
### Is your feature request related to a problem? Please describe
_No response_
### Describe the solution you'd like
Add schema-based support to unsigned number fields for JavaScript:
```java
import { Fory, Type } from '@anthropic/fory';
const fory = new Fory();
// Define type with field metadata
fory.registerType({
name: 'Foo',
fields: {
f1: { type: Type.uint32, id: 0 },
f3: { type: Type.tagged_int32, id: 2 }
},
});
```
### Describe alternatives you've considered
_No response_
### Additional context
#3110
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]