Join GitHub today
GitHub is home to over 40 million developers working together to host and review code, manage projects, and build software together.
Sign upSpecifying expandable cellFormatter breaks columns type for table #3148
Comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
When I specify
cellFormatters: [expandable]
as part of a column definition that's typed(ICell | string)[]
(as directed in the docs) I get type errors.I created a branch using pf-seed where you can easily see the problem. The implementation seems to be fine (live demo of the working branch here) but the types complain so I'm forced to supply a type of
any[]
in the mean time.Am I just doing it wrong or is it a regression?