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