|
@@ -1,4 +1,4 @@
|
|
|
-import type { ExtractPropTypes } from 'vue';
|
|
|
+import type { ExtractPropTypes, Ref } from 'vue';
|
|
|
import type { TreeDataItem } from 'ant-design-vue/es/tree/Tree';
|
|
|
|
|
|
import { buildProps } from '/@/utils/props';
|
|
@@ -171,6 +171,7 @@ export interface InsertNodeParams {
|
|
|
}
|
|
|
|
|
|
export interface TreeActionType {
|
|
|
+ treeData: Ref<TreeDataItem[]>;
|
|
|
checkAll: (checkAll: boolean) => void;
|
|
|
expandAll: (expandAll: boolean) => void;
|
|
|
setExpandedKeys: (keys: KeyType[]) => void;
|