From ead70f57d07d08cc3e4d1e1cc1609a88073a4f29 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=BA=8C=E8=B4=A7=E6=9C=BA=E5=99=A8=E4=BA=BA?= Date: Mon, 1 Apr 2024 14:24:50 +0800 Subject: [PATCH] chore: adjust --- src/interface.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/interface.ts b/src/interface.ts index 9d4e38f08..7ff462585 100644 --- a/src/interface.ts +++ b/src/interface.ts @@ -67,7 +67,9 @@ export interface RenderedCell { export type Direction = 'ltr' | 'rtl'; -export type DataIndex = DeepNamePath | (string & {}); +export type SpecialString = T | (string & {}); + +export type DataIndex = DeepNamePath | SpecialString; export type CellEllipsisType = { showTitle?: boolean } | boolean;