Replies: 2 comments
-
I too wish this request. related: #3748 |
Beta Was this translation helpful? Give feedback.
0 replies
-
Bumping this. readonly is just nicer |
Beta Was this translation helpful? Give feedback.
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.
Beta Was this translation helpful? Give feedback.
All reactions