From 34ec0c8769dd888002b924dc55efb8edf8e54a2a Mon Sep 17 00:00:00 2001 From: xuliangzhan Date: Thu, 17 Feb 2022 22:06:51 +0800 Subject: [PATCH] update ts.d --- types/table.d.ts | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/types/table.d.ts b/types/table.d.ts index ae6b13284..389dd51aa 100644 --- a/types/table.d.ts +++ b/types/table.d.ts @@ -2311,8 +2311,20 @@ export namespace VxeTableDefines { export interface CheckboxChangeParams extends TableBaseCellParams { checked: boolean; + /** + * 请调用方法 getCheckboxRecords() 获取 + * @deprecated + */ records: any[]; + /** + * 请调用方法 getCheckboxReserveRecords() 获取 + * @deprecated + */ reserves: any[]; + /** + * 请调用方法 getCheckboxIndeterminateRecords() 获取 + * @deprecated + */ indeterminates: any[]; } export interface CheckboxChangeEventParams extends TableEventParams, CheckboxChangeParams { } @@ -2321,7 +2333,15 @@ export namespace VxeTableDefines { export interface CheckboxAllEventParams extends TableEventParams, CheckboxAllParams { } export interface CheckboxRangeStartParams { + /** + * 请调用方法 getCheckboxRecords() 获取 + * @deprecated + */ records: any[]; + /** + * 请调用方法 getCheckboxReserveRecords() 获取 + * @deprecated + */ reserves: any[]; } export interface CheckboxRangeStartEventParams extends TableEventParams, CheckboxRangeStartParams { }