mirror of
https://gitee.com/xuliangzhan_admin/vxe-table.git
synced 2026-01-21 05:27:57 +08:00
25 lines
364 B
TypeScript
25 lines
364 B
TypeScript
import { VxeUIExport } from 'vxe-pc-ui'
|
|
|
|
declare global {
|
|
interface Window {
|
|
/**
|
|
* @deprecated
|
|
*/
|
|
VXETable: VxeUIExport;
|
|
}
|
|
}
|
|
|
|
/**
|
|
* 已废弃,请使用 VxeUI
|
|
* @deprecated
|
|
*/
|
|
export const VXETable: VxeUIExport
|
|
|
|
/**
|
|
* 已废弃,请使用 VxeUIExport
|
|
* @deprecated
|
|
*/
|
|
export type VXETableCore = VxeUIExport
|
|
|
|
export * from 'vxe-pc-ui'
|