mirror of
https://github.com/element-plus/element-plus.git
synced 2025-08-16 12:04:12 +08:00

* chore: add vue-tsc for type check * refactor(components): respect Vue's own style type * refactor(components): improve props type * chore(build): improve types * fix(components): remove unnecessary props * perf(components): use shallowRef * fix(components): add missing property type for table * refactor(components): improve time-picker types * refactor(components): extract import type * refactor(components): improve popper types * refactor(components): upload list types * fix(docs): fix type * better type * fix: remove index
12 lines
256 B
TypeScript
12 lines
256 B
TypeScript
import { ComponentPublicInstance ,CSSProperties } from 'vue'
|
|
|
|
declare module '@vue/test-utils' {
|
|
interface DOMWrapper<ElementType> {
|
|
style: CSSProperties
|
|
}
|
|
|
|
interface VueWrapper<T extends ComponentPublicInstance> {
|
|
style: CSSProperties
|
|
}
|
|
}
|