From 0d63b09793ac3d55f7015c998c84978594a1469a Mon Sep 17 00:00:00 2001 From: zhouxinyong Date: Tue, 26 Jul 2022 09:51:12 +0800 Subject: [PATCH] fix: build ts error --- packages/components/src/array-table/index.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/packages/components/src/array-table/index.ts b/packages/components/src/array-table/index.ts index 019f873..75cbe58 100644 --- a/packages/components/src/array-table/index.ts +++ b/packages/components/src/array-table/index.ts @@ -16,8 +16,7 @@ import type { Schema } from '@formily/json-schema' import type { VNode } from 'vue' import { Table, Pagination, Select, Badge } from 'ant-design-vue' import { Space } from '../space' -import type { TableProps } from 'ant-design-vue/lib/table' -import type { ColumnProps } from 'ant-design-vue/lib/table/column' +import type { TableProps, ColumnProps } from 'ant-design-vue/lib/table' import type { PaginationProps } from 'ant-design-vue/lib/pagination' import type { SelectProps } from 'ant-design-vue/lib/select'