mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-04 20:27:44 +08:00
12 lines
253 B
TypeScript
12 lines
253 B
TypeScript
import { ComponentPublicInstance } from 'vue'
|
|
|
|
declare module '@vue/test-utils' {
|
|
interface DOMWrapper<ElementType> {
|
|
style: CSSStyleDeclaration
|
|
}
|
|
|
|
interface VueWrapper<T extends ComponentPublicInstance> {
|
|
style: CSSStyleDeclaration
|
|
}
|
|
}
|