فهرست منبع

fix(runtime-dom): align textarea resize style value types

daiwei 1 ماه پیش
والد
کامیت
1bbb160594
1فایلهای تغییر یافته به همراه2 افزوده شده و 2 حذف شده
  1. 2 2
      packages/runtime-dom/src/modules/style.ts

+ 2 - 2
packages/runtime-dom/src/modules/style.ts

@@ -142,8 +142,8 @@ function autoPrefix(style: CSSStyleDeclaration, rawName: string): string {
 function shouldPreserveTextareaResizeStyle(
 function shouldPreserveTextareaResizeStyle(
   el: Element,
   el: Element,
   key: string,
   key: string,
-  prev: string | string[] | undefined,
-  next: string | string[],
+  prev: unknown,
+  next: unknown,
 ): boolean {
 ): boolean {
   return (
   return (
     el.tagName === 'TEXTAREA' &&
     el.tagName === 'TEXTAREA' &&