Skip to content

Commit

Permalink
Merge pull request #233 from nbarraille/main
Browse files Browse the repository at this point in the history
Fix type issue with creation of LabelHeader
  • Loading branch information
bryanmylee authored Oct 28, 2024
2 parents 5ee5802 + 45f146c commit e0fd3c7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/types/Label.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,4 @@ export type DisplayLabel<Item, Plugins extends AnyPlugins = AnyPlugins> = (
// inferred for subtypes.
export type HeaderLabel<Item, Plugins extends AnyPlugins = AnyPlugins> =
| RenderConfig
| ((cell: HeaderCell<Item>, state: TableState<Item, Plugins>) => RenderConfig);
| ((cell: HeaderCell<Item, Plugins>, state: TableState<Item, Plugins>) => RenderConfig);

0 comments on commit e0fd3c7

Please sign in to comment.