Skip to content

Commit

Permalink
Update interface.ts
Browse files Browse the repository at this point in the history
fix dataindex array
  • Loading branch information
pfdgithub authored Apr 1, 2024
1 parent 7afff24 commit 60a4e82
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/interface.ts
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ export type Direction = 'ltr' | 'rtl';

export type SpecialString<T> = T | (string & {});

export type DataIndex<T = any> = DeepNamePath<T> | SpecialString<T>;
export type DataIndex<T = any> = DeepNamePath<T> | SpecialString<T> | SpecialString<T>[];

export type CellEllipsisType = { showTitle?: boolean } | boolean;

Expand Down

0 comments on commit 60a4e82

Please sign in to comment.