Skip to content

Commit

Permalink
fix: export AccessorFnColumnDefBase (#5445)
Browse files Browse the repository at this point in the history
  • Loading branch information
slhsxcmy committed Mar 28, 2024
1 parent 366ec1f commit eb6943f
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions packages/table-core/src/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -293,8 +293,10 @@ export type GroupColumnDef<
TValue = unknown,
> = GroupColumnDefBase<TData, TValue> & ColumnIdentifiers<TData, TValue>

interface AccessorFnColumnDefBase<TData extends RowData, TValue = unknown>
extends ColumnDefBase<TData, TValue> {
export interface AccessorFnColumnDefBase<
TData extends RowData,
TValue = unknown,
> extends ColumnDefBase<TData, TValue> {
accessorFn: AccessorFn<TData, TValue>
}

Expand Down

0 comments on commit eb6943f

Please sign in to comment.