We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I want to sort object properties by its type
I have the following type object:
type MyObject = { updatedAt: Date count: number createdAt: Date }
I want to colocate properties by type, so Date will be next to each other:
Date
type MyObject = { count: number createdAt: Date updatedAt: Date }
No response
The text was updated successfully, but these errors were encountered:
Commenting because I like the idea, but some subjects need to be addressed, such as:
Sorry, something went wrong.
No branches or pull requests
Describe the problem
I want to sort object properties by its type
Code example
I have the following type object:
I want to colocate properties by type, so
Date
will be next to each other:Additional comments
No response
Validations
The text was updated successfully, but these errors were encountered: