Replies: 2 comments
|
Bumping this. readonly is just nicer |
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
I'd like to convert all types like
TData[]toReadonlyArray<TData>(my preference) orreadonly TData[].This would be a non-breaking change as
TData[]extends/is assignable toReadonlyArray<TData>[].This would enable using readonly data for table data and signal explicitly that tanstack-table does not mutate the original data internally anywhere.
All reactions