mirror of
https://github.com/element-plus/element-plus.git
synced 2024-11-21 01:02:59 +08:00
0636e1e240
* style: add import lint * chore: apply eslint rules * chore: add stricter lint * chore: lint all files * auto fix * manually fix * restore build-indices.ts
14 lines
389 B
TypeScript
14 lines
389 B
TypeScript
import type { ComponentPublicInstance, CSSProperties } from 'vue'
|
|
|
|
declare module '@vue/test-utils' {
|
|
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
|
interface DOMWrapper<ElementType> {
|
|
style: CSSProperties
|
|
}
|
|
|
|
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
|
interface VueWrapper<T extends ComponentPublicInstance> {
|
|
style: CSSProperties
|
|
}
|
|
}
|