diff --git a/components/table/useTableStyle.ts b/components/table/useTableStyle.ts index 24f266d5..b3f1cf06 100644 --- a/components/table/useTableStyle.ts +++ b/components/table/useTableStyle.ts @@ -6,10 +6,10 @@ import useTableLayout from './useTableLayout'; const prefixCls = getPrefixCls('table'); -import { type TableProps } from './table'; -import { type RowType } from './interface'; -import { type ColumnInst } from './column'; -import { type ColumnFixedStatus } from './useTableColumn'; +import type { ColumnFixedStatus } from './useTableColumn'; +import type { TableProps } from './table'; +import type { RowType } from './interface'; +import type { ColumnInst } from './column'; export default ({ props, diff --git a/components/transfer/interface.ts b/components/transfer/interface.ts index 55d8ba33..1bf6266f 100644 --- a/components/transfer/interface.ts +++ b/components/transfer/interface.ts @@ -2,7 +2,7 @@ import { type CSSProperties, type Ref, type VNodeChild } from 'vue'; import { type TreeOption } from '../tree/interface'; import { type TreeProps } from '../tree/props'; import { type RequiredByKeys } from '../_util/types'; -import { type TransferInnerProps } from './props'; +import type { TransferInnerProps } from './props'; export type TreeFilter = TreeProps['filterMethod']; diff --git a/components/transfer/props.ts b/components/transfer/props.ts index f82c5801..66324b64 100644 --- a/components/transfer/props.ts +++ b/components/transfer/props.ts @@ -3,10 +3,10 @@ import { type ComponentInnerProps, type ExtractPublicPropTypes, } from '../_util/interface'; -import { - type TransferFilter, - type TransferOption, - type TransferOptionValue, +import type { + TransferFilter, + TransferOption, + TransferOptionValue, } from './interface'; export const transferProps = {