Describe the bug
Typescript type explicitly defines property children as required when it's not required.
Illegal according to the typescript type:
<For each={props.groups}>
{group => (
Has to be:
<For
each={props.groups}
children={(group: AddressTotalsGroup): JSX.Element => (
and
Your Example Website or App
n/a
Steps to Reproduce the Bug or Issue
.
Expected behavior
Type linter not erroring on valid component property constraints.
Screenshots or Videos
No response
Platform
n/a
Additional context
No response