Skip to content

Commit e0fd3c7

Browse files
authoredOct 28, 2024··
Merge pull request #233 from nbarraille/main
Fix type issue with creation of LabelHeader
2 parents 5ee5802 + 45f146c commit e0fd3c7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/lib/types/Label.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,4 @@ export type DisplayLabel<Item, Plugins extends AnyPlugins = AnyPlugins> = (
1919
// inferred for subtypes.
2020
export type HeaderLabel<Item, Plugins extends AnyPlugins = AnyPlugins> =
2121
| RenderConfig
22-
| ((cell: HeaderCell<Item>, state: TableState<Item, Plugins>) => RenderConfig);
22+
| ((cell: HeaderCell<Item, Plugins>, state: TableState<Item, Plugins>) => RenderConfig);

0 commit comments

Comments
 (0)
Please sign in to comment.