Skip to content

Commit

Permalink
chore: adjust
Browse files Browse the repository at this point in the history
  • Loading branch information
zombieJ committed Apr 1, 2024
1 parent 39a6ff8 commit ead70f5
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/interface.ts
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,9 @@ export interface RenderedCell<RecordType> {

export type Direction = 'ltr' | 'rtl';

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

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

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

Expand Down

0 comments on commit ead70f5

Please sign in to comment.