el-plus2 0.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (299) hide show
  1. package/dist/index.full.js +2204 -0
  2. package/dist/index.full.min.js +2 -0
  3. package/dist/index.full.min.js.map +1 -0
  4. package/dist/index.full.min.mjs +2 -0
  5. package/dist/index.full.min.mjs.map +1 -0
  6. package/dist/index.full.mjs +2176 -0
  7. package/env.d.ts +17 -0
  8. package/es/components/buttons/index.d.ts +359 -0
  9. package/es/components/buttons/index.mjs +8 -0
  10. package/es/components/buttons/index.mjs.map +1 -0
  11. package/es/components/buttons/src/buttons-vue.d.ts +142 -0
  12. package/es/components/buttons/src/buttons-vue.mjs +70 -0
  13. package/es/components/buttons/src/buttons-vue.mjs.map +1 -0
  14. package/es/components/buttons/src/buttons.d.ts +57 -0
  15. package/es/components/buttons/src/buttons.mjs +23 -0
  16. package/es/components/buttons/src/buttons.mjs.map +1 -0
  17. package/es/components/form/index.d.ts +291 -0
  18. package/es/components/form/index.mjs +10 -0
  19. package/es/components/form/index.mjs.map +1 -0
  20. package/es/components/form/src/form-item-vue.d.ts +135 -0
  21. package/es/components/form/src/form-item-vue.mjs +40 -0
  22. package/es/components/form/src/form-item-vue.mjs.map +1 -0
  23. package/es/components/form/src/form-item.d.ts +68 -0
  24. package/es/components/form/src/form-item.mjs +33 -0
  25. package/es/components/form/src/form-item.mjs.map +1 -0
  26. package/es/components/form/src/form.d.ts +66 -0
  27. package/es/components/form/src/form.mjs +50 -0
  28. package/es/components/form/src/form.mjs.map +1 -0
  29. package/es/components/form/src/form.vue.d.ts +161 -0
  30. package/es/components/form/src/form.vue.mjs +6 -0
  31. package/es/components/form/src/form.vue.mjs.map +1 -0
  32. package/es/components/form/src/form.vue2.mjs +124 -0
  33. package/es/components/form/src/form.vue2.mjs.map +1 -0
  34. package/es/components/form/src/hooks/use-form-item.d.ts +12 -0
  35. package/es/components/form/src/hooks/use-form-item.mjs +97 -0
  36. package/es/components/form/src/hooks/use-form-item.mjs.map +1 -0
  37. package/es/components/form/src/hooks/use-form.d.ts +25 -0
  38. package/es/components/form/src/hooks/use-form.mjs +53 -0
  39. package/es/components/form/src/hooks/use-form.mjs.map +1 -0
  40. package/es/components/index.d.ts +6 -0
  41. package/es/components/index.mjs +9 -0
  42. package/es/components/index.mjs.map +1 -0
  43. package/es/components/input/index.d.ts +468 -0
  44. package/es/components/input/index.mjs +8 -0
  45. package/es/components/input/index.mjs.map +1 -0
  46. package/es/components/input/src/input.d.ts +122 -0
  47. package/es/components/input/src/input.mjs +28 -0
  48. package/es/components/input/src/input.mjs.map +1 -0
  49. package/es/components/input/src/input.vue.d.ts +268 -0
  50. package/es/components/input/src/input.vue.mjs +6 -0
  51. package/es/components/input/src/input.vue.mjs.map +1 -0
  52. package/es/components/input/src/input.vue2.mjs +144 -0
  53. package/es/components/input/src/input.vue2.mjs.map +1 -0
  54. package/es/components/searchListPage/index.d.ts +8583 -0
  55. package/es/components/searchListPage/index.mjs +8 -0
  56. package/es/components/searchListPage/index.mjs.map +1 -0
  57. package/es/components/searchListPage/src/searchListPage.d.ts +64 -0
  58. package/es/components/searchListPage/src/searchListPage.mjs +61 -0
  59. package/es/components/searchListPage/src/searchListPage.mjs.map +1 -0
  60. package/es/components/searchListPage/src/searchListPage.vue.d.ts +2760 -0
  61. package/es/components/searchListPage/src/searchListPage.vue.mjs +6 -0
  62. package/es/components/searchListPage/src/searchListPage.vue.mjs.map +1 -0
  63. package/es/components/searchListPage/src/searchListPage.vue2.mjs +99 -0
  64. package/es/components/searchListPage/src/searchListPage.vue2.mjs.map +1 -0
  65. package/es/components/searchListPage/src/use-search-list-page.d.ts +2671 -0
  66. package/es/components/searchListPage/src/use-search-list-page.mjs +177 -0
  67. package/es/components/searchListPage/src/use-search-list-page.mjs.map +1 -0
  68. package/es/components/select/index.d.ts +664 -0
  69. package/es/components/select/index.mjs +8 -0
  70. package/es/components/select/index.mjs.map +1 -0
  71. package/es/components/select/src/select.d.ts +283 -0
  72. package/es/components/select/src/select.mjs +47 -0
  73. package/es/components/select/src/select.mjs.map +1 -0
  74. package/es/components/select/src/select.vue.d.ts +384 -0
  75. package/es/components/select/src/select.vue.mjs +6 -0
  76. package/es/components/select/src/select.vue.mjs.map +1 -0
  77. package/es/components/select/src/select.vue2.mjs +113 -0
  78. package/es/components/select/src/select.vue2.mjs.map +1 -0
  79. package/es/components/select/src/use-select.d.ts +12 -0
  80. package/es/components/select/src/use-select.mjs +87 -0
  81. package/es/components/select/src/use-select.mjs.map +1 -0
  82. package/es/components/table/index.d.ts +2975 -0
  83. package/es/components/table/index.mjs +8 -0
  84. package/es/components/table/index.mjs.map +1 -0
  85. package/es/components/table/src/table.d.ts +781 -0
  86. package/es/components/table/src/table.mjs +81 -0
  87. package/es/components/table/src/table.mjs.map +1 -0
  88. package/es/components/table/src/table.vue.d.ts +1708 -0
  89. package/es/components/table/src/table.vue.mjs +6 -0
  90. package/es/components/table/src/table.vue.mjs.map +1 -0
  91. package/es/components/table/src/table.vue2.mjs +204 -0
  92. package/es/components/table/src/table.vue2.mjs.map +1 -0
  93. package/es/components/table/src/use-table.d.ts +241 -0
  94. package/es/components/table/src/use-table.mjs +260 -0
  95. package/es/components/table/src/use-table.mjs.map +1 -0
  96. package/es/components.d.ts +3 -0
  97. package/es/components.mjs +11 -0
  98. package/es/components.mjs.map +1 -0
  99. package/es/directives/index.d.ts +2 -0
  100. package/es/directives/index.mjs +3 -0
  101. package/es/directives/index.mjs.map +1 -0
  102. package/es/directives/permission/index.d.ts +6 -0
  103. package/es/directives/permission/index.mjs +55 -0
  104. package/es/directives/permission/index.mjs.map +1 -0
  105. package/es/directives/repeat-click/index.d.ts +16 -0
  106. package/es/directives/repeat-click/index.mjs +68 -0
  107. package/es/directives/repeat-click/index.mjs.map +1 -0
  108. package/es/directives/vite.config.d.ts +2 -0
  109. package/es/hooks/index.d.ts +1 -0
  110. package/es/hooks/index.mjs +2 -0
  111. package/es/hooks/index.mjs.map +1 -0
  112. package/es/hooks/use-request.d.ts +20 -0
  113. package/es/hooks/use-request.mjs +82 -0
  114. package/es/hooks/use-request.mjs.map +1 -0
  115. package/es/index.d.ts +9 -0
  116. package/es/index.mjs +24 -0
  117. package/es/index.mjs.map +1 -0
  118. package/es/package.json.mjs +4 -0
  119. package/es/package.json.mjs.map +1 -0
  120. package/es/theme-chalk/gulpfile.d.ts +0 -0
  121. package/es/theme-chalk/gulpfile.mjs +2 -0
  122. package/es/theme-chalk/gulpfile.mjs.map +1 -0
  123. package/es/types/env.d.mjs +2 -0
  124. package/es/types/env.d.mjs.map +1 -0
  125. package/es/types/global.d.mjs +2 -0
  126. package/es/types/global.d.mjs.map +1 -0
  127. package/es/types/vue-shim.d.mjs +2 -0
  128. package/es/types/vue-shim.d.mjs.map +1 -0
  129. package/es/utils/bem.d.ts +10 -0
  130. package/es/utils/bem.mjs +31 -0
  131. package/es/utils/bem.mjs.map +1 -0
  132. package/es/utils/cookie.d.ts +7 -0
  133. package/es/utils/cookie.mjs +29 -0
  134. package/es/utils/cookie.mjs.map +1 -0
  135. package/es/utils/env.d.ts +3 -0
  136. package/es/utils/env.mjs +27 -0
  137. package/es/utils/env.mjs.map +1 -0
  138. package/es/utils/props.d.ts +37 -0
  139. package/es/utils/props.mjs +66 -0
  140. package/es/utils/props.mjs.map +1 -0
  141. package/es/utils/request.d.ts +6 -0
  142. package/es/utils/request.mjs +157 -0
  143. package/es/utils/request.mjs.map +1 -0
  144. package/es/utils/type.d.ts +15 -0
  145. package/es/utils/type.mjs +2 -0
  146. package/es/utils/type.mjs.map +1 -0
  147. package/es/utils/with-install.d.ts +4 -0
  148. package/es/utils/with-install.mjs +9 -0
  149. package/es/utils/with-install.mjs.map +1 -0
  150. package/es/version.d.ts +1 -0
  151. package/es/version.mjs +4 -0
  152. package/es/version.mjs.map +1 -0
  153. package/global.d.ts +13 -0
  154. package/lib/components/buttons/index.d.ts +359 -0
  155. package/lib/components/buttons/index.js +13 -0
  156. package/lib/components/buttons/index.js.map +1 -0
  157. package/lib/components/buttons/src/buttons-vue.d.ts +142 -0
  158. package/lib/components/buttons/src/buttons-vue.js +74 -0
  159. package/lib/components/buttons/src/buttons-vue.js.map +1 -0
  160. package/lib/components/buttons/src/buttons.d.ts +57 -0
  161. package/lib/components/buttons/src/buttons.js +25 -0
  162. package/lib/components/buttons/src/buttons.js.map +1 -0
  163. package/lib/components/form/index.d.ts +291 -0
  164. package/lib/components/form/index.js +21 -0
  165. package/lib/components/form/index.js.map +1 -0
  166. package/lib/components/form/src/form-item-vue.d.ts +135 -0
  167. package/lib/components/form/src/form-item-vue.js +44 -0
  168. package/lib/components/form/src/form-item-vue.js.map +1 -0
  169. package/lib/components/form/src/form-item.d.ts +68 -0
  170. package/lib/components/form/src/form-item.js +36 -0
  171. package/lib/components/form/src/form-item.js.map +1 -0
  172. package/lib/components/form/src/form.d.ts +66 -0
  173. package/lib/components/form/src/form.js +55 -0
  174. package/lib/components/form/src/form.js.map +1 -0
  175. package/lib/components/form/src/form.vue.d.ts +161 -0
  176. package/lib/components/form/src/form.vue.js +10 -0
  177. package/lib/components/form/src/form.vue.js.map +1 -0
  178. package/lib/components/form/src/form.vue2.js +128 -0
  179. package/lib/components/form/src/form.vue2.js.map +1 -0
  180. package/lib/components/form/src/hooks/use-form-item.d.ts +12 -0
  181. package/lib/components/form/src/hooks/use-form-item.js +101 -0
  182. package/lib/components/form/src/hooks/use-form-item.js.map +1 -0
  183. package/lib/components/form/src/hooks/use-form.d.ts +25 -0
  184. package/lib/components/form/src/hooks/use-form.js +56 -0
  185. package/lib/components/form/src/hooks/use-form.js.map +1 -0
  186. package/lib/components/index.d.ts +6 -0
  187. package/lib/components/index.js +35 -0
  188. package/lib/components/index.js.map +1 -0
  189. package/lib/components/input/index.d.ts +468 -0
  190. package/lib/components/input/index.js +15 -0
  191. package/lib/components/input/index.js.map +1 -0
  192. package/lib/components/input/src/input.d.ts +122 -0
  193. package/lib/components/input/src/input.js +32 -0
  194. package/lib/components/input/src/input.js.map +1 -0
  195. package/lib/components/input/src/input.vue.d.ts +268 -0
  196. package/lib/components/input/src/input.vue.js +10 -0
  197. package/lib/components/input/src/input.vue.js.map +1 -0
  198. package/lib/components/input/src/input.vue2.js +148 -0
  199. package/lib/components/input/src/input.vue2.js.map +1 -0
  200. package/lib/components/searchListPage/index.d.ts +8583 -0
  201. package/lib/components/searchListPage/index.js +13 -0
  202. package/lib/components/searchListPage/index.js.map +1 -0
  203. package/lib/components/searchListPage/src/searchListPage.d.ts +64 -0
  204. package/lib/components/searchListPage/src/searchListPage.js +63 -0
  205. package/lib/components/searchListPage/src/searchListPage.js.map +1 -0
  206. package/lib/components/searchListPage/src/searchListPage.vue.d.ts +2760 -0
  207. package/lib/components/searchListPage/src/searchListPage.vue.js +10 -0
  208. package/lib/components/searchListPage/src/searchListPage.vue.js.map +1 -0
  209. package/lib/components/searchListPage/src/searchListPage.vue2.js +103 -0
  210. package/lib/components/searchListPage/src/searchListPage.vue2.js.map +1 -0
  211. package/lib/components/searchListPage/src/use-search-list-page.d.ts +2671 -0
  212. package/lib/components/searchListPage/src/use-search-list-page.js +179 -0
  213. package/lib/components/searchListPage/src/use-search-list-page.js.map +1 -0
  214. package/lib/components/select/index.d.ts +664 -0
  215. package/lib/components/select/index.js +17 -0
  216. package/lib/components/select/index.js.map +1 -0
  217. package/lib/components/select/src/select.d.ts +283 -0
  218. package/lib/components/select/src/select.js +53 -0
  219. package/lib/components/select/src/select.js.map +1 -0
  220. package/lib/components/select/src/select.vue.d.ts +384 -0
  221. package/lib/components/select/src/select.vue.js +10 -0
  222. package/lib/components/select/src/select.vue.js.map +1 -0
  223. package/lib/components/select/src/select.vue2.js +117 -0
  224. package/lib/components/select/src/select.vue2.js.map +1 -0
  225. package/lib/components/select/src/use-select.d.ts +12 -0
  226. package/lib/components/select/src/use-select.js +89 -0
  227. package/lib/components/select/src/use-select.js.map +1 -0
  228. package/lib/components/table/index.d.ts +2975 -0
  229. package/lib/components/table/index.js +16 -0
  230. package/lib/components/table/index.js.map +1 -0
  231. package/lib/components/table/src/table.d.ts +781 -0
  232. package/lib/components/table/src/table.js +86 -0
  233. package/lib/components/table/src/table.js.map +1 -0
  234. package/lib/components/table/src/table.vue.d.ts +1708 -0
  235. package/lib/components/table/src/table.vue.js +10 -0
  236. package/lib/components/table/src/table.vue.js.map +1 -0
  237. package/lib/components/table/src/table.vue2.js +208 -0
  238. package/lib/components/table/src/table.vue2.js.map +1 -0
  239. package/lib/components/table/src/use-table.d.ts +241 -0
  240. package/lib/components/table/src/use-table.js +264 -0
  241. package/lib/components/table/src/use-table.js.map +1 -0
  242. package/lib/components.d.ts +3 -0
  243. package/lib/components.js +15 -0
  244. package/lib/components.js.map +1 -0
  245. package/lib/directives/index.d.ts +2 -0
  246. package/lib/directives/index.js +10 -0
  247. package/lib/directives/index.js.map +1 -0
  248. package/lib/directives/permission/index.d.ts +6 -0
  249. package/lib/directives/permission/index.js +60 -0
  250. package/lib/directives/permission/index.js.map +1 -0
  251. package/lib/directives/repeat-click/index.d.ts +16 -0
  252. package/lib/directives/repeat-click/index.js +72 -0
  253. package/lib/directives/repeat-click/index.js.map +1 -0
  254. package/lib/directives/vite.config.d.ts +2 -0
  255. package/lib/hooks/index.d.ts +1 -0
  256. package/lib/hooks/index.js +8 -0
  257. package/lib/hooks/index.js.map +1 -0
  258. package/lib/hooks/use-request.d.ts +20 -0
  259. package/lib/hooks/use-request.js +84 -0
  260. package/lib/hooks/use-request.js.map +1 -0
  261. package/lib/index.d.ts +9 -0
  262. package/lib/index.js +53 -0
  263. package/lib/index.js.map +1 -0
  264. package/lib/package.json.js +6 -0
  265. package/lib/package.json.js.map +1 -0
  266. package/lib/theme-chalk/gulpfile.d.ts +0 -0
  267. package/lib/theme-chalk/gulpfile.js +3 -0
  268. package/lib/theme-chalk/gulpfile.js.map +1 -0
  269. package/lib/types/env.d.js +3 -0
  270. package/lib/types/env.d.js.map +1 -0
  271. package/lib/types/global.d.js +3 -0
  272. package/lib/types/global.d.js.map +1 -0
  273. package/lib/types/vue-shim.d.js +3 -0
  274. package/lib/types/vue-shim.d.js.map +1 -0
  275. package/lib/utils/bem.d.ts +10 -0
  276. package/lib/utils/bem.js +33 -0
  277. package/lib/utils/bem.js.map +1 -0
  278. package/lib/utils/cookie.d.ts +7 -0
  279. package/lib/utils/cookie.js +33 -0
  280. package/lib/utils/cookie.js.map +1 -0
  281. package/lib/utils/env.d.ts +3 -0
  282. package/lib/utils/env.js +30 -0
  283. package/lib/utils/env.js.map +1 -0
  284. package/lib/utils/props.d.ts +37 -0
  285. package/lib/utils/props.js +73 -0
  286. package/lib/utils/props.js.map +1 -0
  287. package/lib/utils/request.d.ts +6 -0
  288. package/lib/utils/request.js +162 -0
  289. package/lib/utils/request.js.map +1 -0
  290. package/lib/utils/type.d.ts +15 -0
  291. package/lib/utils/type.js +3 -0
  292. package/lib/utils/type.js.map +1 -0
  293. package/lib/utils/with-install.d.ts +4 -0
  294. package/lib/utils/with-install.js +11 -0
  295. package/lib/utils/with-install.js.map +1 -0
  296. package/lib/version.d.ts +1 -0
  297. package/lib/version.js +6 -0
  298. package/lib/version.js.map +1 -0
  299. package/package.json +27 -0
@@ -0,0 +1,1708 @@
1
+ declare var __VLS_53: string, __VLS_54: any;
2
+ type __VLS_Slots = {} & {
3
+ [K in NonNullable<typeof __VLS_53>]?: (props: typeof __VLS_54) => any;
4
+ };
5
+ declare const __VLS_base: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
6
+ columns: {
7
+ type: import("vue").PropType<import("./table").TableColumn[]>;
8
+ default: () => never[];
9
+ };
10
+ showSelectionCol: BooleanConstructor;
11
+ showIndexCol: {
12
+ type: BooleanConstructor;
13
+ default: boolean;
14
+ };
15
+ align: {
16
+ type: import("vue").PropType<"left" | "center" | "right">;
17
+ default: string;
18
+ };
19
+ indexFormatter: {
20
+ type: import("vue").PropType<import("element-plus").TableColumnCtx["index"]>;
21
+ };
22
+ disabled: BooleanConstructor;
23
+ reserveSelection: BooleanConstructor;
24
+ selectable: {
25
+ type: import("vue").PropType<import("element-plus").TableColumnCtx["selectable"]>;
26
+ };
27
+ paginationProps: {
28
+ type: import("vue").PropType<Partial<import("element-plus").PaginationProps & import("packages/utils/type").WithOnPrefixAndCamelCase<import("element-plus").PaginationEmits>>>;
29
+ default: () => {};
30
+ };
31
+ showPagination: BooleanConstructor;
32
+ isFrontPage: BooleanConstructor;
33
+ actionButtons: {
34
+ type: import("vue").PropType<import("packages/el-plus").ButtonProps[]>;
35
+ default: () => never[];
36
+ };
37
+ linkProps: {
38
+ type: import("vue").PropType<import("packages/el-plus").ButtonProps[]>;
39
+ default: () => never[];
40
+ };
41
+ api: {
42
+ type: import("vue").PropType<import("packages/utils/type").Api>;
43
+ };
44
+ method: {
45
+ type: import("vue").PropType<import("axios").Method>;
46
+ };
47
+ reqData: {
48
+ type: ObjectConstructor;
49
+ };
50
+ reqParams: {
51
+ type: ObjectConstructor;
52
+ };
53
+ reqBefore: {
54
+ type: import("vue").PropType<import("packages/utils/type").ReqBefore>;
55
+ };
56
+ reqAfter: {
57
+ type: import("vue").PropType<import("packages/utils/type").ReqAfter>;
58
+ };
59
+ size: {
60
+ default: string;
61
+ type: import("vue").PropType<import("element-plus/es/utils").EpPropMergeType<StringConstructor, "" | "small" | "default" | "large", never>>;
62
+ required: false;
63
+ validator: ((val: unknown) => boolean) | undefined;
64
+ __epPropKey: true;
65
+ };
66
+ border: {
67
+ default: boolean;
68
+ prototype: Boolean;
69
+ };
70
+ headerCellStyle: {
71
+ default: () => {
72
+ background: string;
73
+ fontSize: string;
74
+ color: string;
75
+ };
76
+ length?: number | undefined;
77
+ toString?: (() => string) | undefined;
78
+ toLocaleString?: {
79
+ (): string;
80
+ (locales: string | string[], options?: Intl.NumberFormatOptions & Intl.DateTimeFormatOptions): string;
81
+ } | undefined;
82
+ pop?: (() => ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
83
+ row: any;
84
+ rowIndex: number;
85
+ column: import("element-plus").TableColumnCtx<any>;
86
+ columnIndex: number;
87
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null | undefined) | undefined;
88
+ push?: ((...items: (((new (...args: any[]) => import("vue").CSSProperties | ((data: {
89
+ row: any;
90
+ rowIndex: number;
91
+ column: import("element-plus").TableColumnCtx<any>;
92
+ columnIndex: number;
93
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null)[]) => number) | undefined;
94
+ concat?: {
95
+ (...items: ConcatArray<((new (...args: any[]) => import("vue").CSSProperties | ((data: {
96
+ row: any;
97
+ rowIndex: number;
98
+ column: import("element-plus").TableColumnCtx<any>;
99
+ columnIndex: number;
100
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null>[]): (((new (...args: any[]) => import("vue").CSSProperties | ((data: {
101
+ row: any;
102
+ rowIndex: number;
103
+ column: import("element-plus").TableColumnCtx<any>;
104
+ columnIndex: number;
105
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null)[];
106
+ (...items: (((new (...args: any[]) => import("vue").CSSProperties | ((data: {
107
+ row: any;
108
+ rowIndex: number;
109
+ column: import("element-plus").TableColumnCtx<any>;
110
+ columnIndex: number;
111
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | ConcatArray<((new (...args: any[]) => import("vue").CSSProperties | ((data: {
112
+ row: any;
113
+ rowIndex: number;
114
+ column: import("element-plus").TableColumnCtx<any>;
115
+ columnIndex: number;
116
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null> | null)[]): (((new (...args: any[]) => import("vue").CSSProperties | ((data: {
117
+ row: any;
118
+ rowIndex: number;
119
+ column: import("element-plus").TableColumnCtx<any>;
120
+ columnIndex: number;
121
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null)[];
122
+ } | undefined;
123
+ join?: ((separator?: string) => string) | undefined;
124
+ reverse?: (() => (((new (...args: any[]) => import("vue").CSSProperties | ((data: {
125
+ row: any;
126
+ rowIndex: number;
127
+ column: import("element-plus").TableColumnCtx<any>;
128
+ columnIndex: number;
129
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null)[]) | undefined;
130
+ shift?: (() => ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
131
+ row: any;
132
+ rowIndex: number;
133
+ column: import("element-plus").TableColumnCtx<any>;
134
+ columnIndex: number;
135
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null | undefined) | undefined;
136
+ slice?: ((start?: number, end?: number) => (((new (...args: any[]) => import("vue").CSSProperties | ((data: {
137
+ row: any;
138
+ rowIndex: number;
139
+ column: import("element-plus").TableColumnCtx<any>;
140
+ columnIndex: number;
141
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null)[]) | undefined;
142
+ sort?: ((compareFn?: ((a: ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
143
+ row: any;
144
+ rowIndex: number;
145
+ column: import("element-plus").TableColumnCtx<any>;
146
+ columnIndex: number;
147
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null, b: ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
148
+ row: any;
149
+ rowIndex: number;
150
+ column: import("element-plus").TableColumnCtx<any>;
151
+ columnIndex: number;
152
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null) => number) | undefined) => (((new (...args: any[]) => import("vue").CSSProperties | ((data: {
153
+ row: any;
154
+ rowIndex: number;
155
+ column: import("element-plus").TableColumnCtx<any>;
156
+ columnIndex: number;
157
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null)[]) | undefined;
158
+ splice?: {
159
+ (start: number, deleteCount?: number): (((new (...args: any[]) => import("vue").CSSProperties | ((data: {
160
+ row: any;
161
+ rowIndex: number;
162
+ column: import("element-plus").TableColumnCtx<any>;
163
+ columnIndex: number;
164
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null)[];
165
+ (start: number, deleteCount: number, ...items: (((new (...args: any[]) => import("vue").CSSProperties | ((data: {
166
+ row: any;
167
+ rowIndex: number;
168
+ column: import("element-plus").TableColumnCtx<any>;
169
+ columnIndex: number;
170
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null)[]): (((new (...args: any[]) => import("vue").CSSProperties | ((data: {
171
+ row: any;
172
+ rowIndex: number;
173
+ column: import("element-plus").TableColumnCtx<any>;
174
+ columnIndex: number;
175
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null)[];
176
+ } | undefined;
177
+ unshift?: ((...items: (((new (...args: any[]) => import("vue").CSSProperties | ((data: {
178
+ row: any;
179
+ rowIndex: number;
180
+ column: import("element-plus").TableColumnCtx<any>;
181
+ columnIndex: number;
182
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null)[]) => number) | undefined;
183
+ indexOf?: ((searchElement: ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
184
+ row: any;
185
+ rowIndex: number;
186
+ column: import("element-plus").TableColumnCtx<any>;
187
+ columnIndex: number;
188
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null, fromIndex?: number) => number) | undefined;
189
+ lastIndexOf?: ((searchElement: ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
190
+ row: any;
191
+ rowIndex: number;
192
+ column: import("element-plus").TableColumnCtx<any>;
193
+ columnIndex: number;
194
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null, fromIndex?: number) => number) | undefined;
195
+ every?: {
196
+ <S extends ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
197
+ row: any;
198
+ rowIndex: number;
199
+ column: import("element-plus").TableColumnCtx<any>;
200
+ columnIndex: number;
201
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null>(predicate: (value: ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
202
+ row: any;
203
+ rowIndex: number;
204
+ column: import("element-plus").TableColumnCtx<any>;
205
+ columnIndex: number;
206
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null, index: number, array: (((new (...args: any[]) => import("vue").CSSProperties | ((data: {
207
+ row: any;
208
+ rowIndex: number;
209
+ column: import("element-plus").TableColumnCtx<any>;
210
+ columnIndex: number;
211
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null)[]) => value is S, thisArg?: any): this is S[];
212
+ (predicate: (value: ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
213
+ row: any;
214
+ rowIndex: number;
215
+ column: import("element-plus").TableColumnCtx<any>;
216
+ columnIndex: number;
217
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null, index: number, array: (((new (...args: any[]) => import("vue").CSSProperties | ((data: {
218
+ row: any;
219
+ rowIndex: number;
220
+ column: import("element-plus").TableColumnCtx<any>;
221
+ columnIndex: number;
222
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null)[]) => unknown, thisArg?: any): boolean;
223
+ } | undefined;
224
+ some?: ((predicate: (value: ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
225
+ row: any;
226
+ rowIndex: number;
227
+ column: import("element-plus").TableColumnCtx<any>;
228
+ columnIndex: number;
229
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null, index: number, array: (((new (...args: any[]) => import("vue").CSSProperties | ((data: {
230
+ row: any;
231
+ rowIndex: number;
232
+ column: import("element-plus").TableColumnCtx<any>;
233
+ columnIndex: number;
234
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null)[]) => unknown, thisArg?: any) => boolean) | undefined;
235
+ forEach?: ((callbackfn: (value: ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
236
+ row: any;
237
+ rowIndex: number;
238
+ column: import("element-plus").TableColumnCtx<any>;
239
+ columnIndex: number;
240
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null, index: number, array: (((new (...args: any[]) => import("vue").CSSProperties | ((data: {
241
+ row: any;
242
+ rowIndex: number;
243
+ column: import("element-plus").TableColumnCtx<any>;
244
+ columnIndex: number;
245
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null)[]) => void, thisArg?: any) => void) | undefined;
246
+ map?: (<U>(callbackfn: (value: ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
247
+ row: any;
248
+ rowIndex: number;
249
+ column: import("element-plus").TableColumnCtx<any>;
250
+ columnIndex: number;
251
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null, index: number, array: (((new (...args: any[]) => import("vue").CSSProperties | ((data: {
252
+ row: any;
253
+ rowIndex: number;
254
+ column: import("element-plus").TableColumnCtx<any>;
255
+ columnIndex: number;
256
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null)[]) => U, thisArg?: any) => U[]) | undefined;
257
+ filter?: {
258
+ <S extends ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
259
+ row: any;
260
+ rowIndex: number;
261
+ column: import("element-plus").TableColumnCtx<any>;
262
+ columnIndex: number;
263
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null>(predicate: (value: ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
264
+ row: any;
265
+ rowIndex: number;
266
+ column: import("element-plus").TableColumnCtx<any>;
267
+ columnIndex: number;
268
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null, index: number, array: (((new (...args: any[]) => import("vue").CSSProperties | ((data: {
269
+ row: any;
270
+ rowIndex: number;
271
+ column: import("element-plus").TableColumnCtx<any>;
272
+ columnIndex: number;
273
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null)[]) => value is S, thisArg?: any): S[];
274
+ (predicate: (value: ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
275
+ row: any;
276
+ rowIndex: number;
277
+ column: import("element-plus").TableColumnCtx<any>;
278
+ columnIndex: number;
279
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null, index: number, array: (((new (...args: any[]) => import("vue").CSSProperties | ((data: {
280
+ row: any;
281
+ rowIndex: number;
282
+ column: import("element-plus").TableColumnCtx<any>;
283
+ columnIndex: number;
284
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null)[]) => unknown, thisArg?: any): (((new (...args: any[]) => import("vue").CSSProperties | ((data: {
285
+ row: any;
286
+ rowIndex: number;
287
+ column: import("element-plus").TableColumnCtx<any>;
288
+ columnIndex: number;
289
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null)[];
290
+ } | undefined;
291
+ reduce?: {
292
+ (callbackfn: (previousValue: ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
293
+ row: any;
294
+ rowIndex: number;
295
+ column: import("element-plus").TableColumnCtx<any>;
296
+ columnIndex: number;
297
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null, currentValue: ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
298
+ row: any;
299
+ rowIndex: number;
300
+ column: import("element-plus").TableColumnCtx<any>;
301
+ columnIndex: number;
302
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null, currentIndex: number, array: (((new (...args: any[]) => import("vue").CSSProperties | ((data: {
303
+ row: any;
304
+ rowIndex: number;
305
+ column: import("element-plus").TableColumnCtx<any>;
306
+ columnIndex: number;
307
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null)[]) => ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
308
+ row: any;
309
+ rowIndex: number;
310
+ column: import("element-plus").TableColumnCtx<any>;
311
+ columnIndex: number;
312
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null): ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
313
+ row: any;
314
+ rowIndex: number;
315
+ column: import("element-plus").TableColumnCtx<any>;
316
+ columnIndex: number;
317
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null;
318
+ (callbackfn: (previousValue: ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
319
+ row: any;
320
+ rowIndex: number;
321
+ column: import("element-plus").TableColumnCtx<any>;
322
+ columnIndex: number;
323
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null, currentValue: ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
324
+ row: any;
325
+ rowIndex: number;
326
+ column: import("element-plus").TableColumnCtx<any>;
327
+ columnIndex: number;
328
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null, currentIndex: number, array: (((new (...args: any[]) => import("vue").CSSProperties | ((data: {
329
+ row: any;
330
+ rowIndex: number;
331
+ column: import("element-plus").TableColumnCtx<any>;
332
+ columnIndex: number;
333
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null)[]) => ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
334
+ row: any;
335
+ rowIndex: number;
336
+ column: import("element-plus").TableColumnCtx<any>;
337
+ columnIndex: number;
338
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null, initialValue: ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
339
+ row: any;
340
+ rowIndex: number;
341
+ column: import("element-plus").TableColumnCtx<any>;
342
+ columnIndex: number;
343
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null): ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
344
+ row: any;
345
+ rowIndex: number;
346
+ column: import("element-plus").TableColumnCtx<any>;
347
+ columnIndex: number;
348
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null;
349
+ <U>(callbackfn: (previousValue: U, currentValue: ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
350
+ row: any;
351
+ rowIndex: number;
352
+ column: import("element-plus").TableColumnCtx<any>;
353
+ columnIndex: number;
354
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null, currentIndex: number, array: (((new (...args: any[]) => import("vue").CSSProperties | ((data: {
355
+ row: any;
356
+ rowIndex: number;
357
+ column: import("element-plus").TableColumnCtx<any>;
358
+ columnIndex: number;
359
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null)[]) => U, initialValue: U): U;
360
+ } | undefined;
361
+ reduceRight?: {
362
+ (callbackfn: (previousValue: ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
363
+ row: any;
364
+ rowIndex: number;
365
+ column: import("element-plus").TableColumnCtx<any>;
366
+ columnIndex: number;
367
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null, currentValue: ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
368
+ row: any;
369
+ rowIndex: number;
370
+ column: import("element-plus").TableColumnCtx<any>;
371
+ columnIndex: number;
372
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null, currentIndex: number, array: (((new (...args: any[]) => import("vue").CSSProperties | ((data: {
373
+ row: any;
374
+ rowIndex: number;
375
+ column: import("element-plus").TableColumnCtx<any>;
376
+ columnIndex: number;
377
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null)[]) => ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
378
+ row: any;
379
+ rowIndex: number;
380
+ column: import("element-plus").TableColumnCtx<any>;
381
+ columnIndex: number;
382
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null): ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
383
+ row: any;
384
+ rowIndex: number;
385
+ column: import("element-plus").TableColumnCtx<any>;
386
+ columnIndex: number;
387
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null;
388
+ (callbackfn: (previousValue: ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
389
+ row: any;
390
+ rowIndex: number;
391
+ column: import("element-plus").TableColumnCtx<any>;
392
+ columnIndex: number;
393
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null, currentValue: ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
394
+ row: any;
395
+ rowIndex: number;
396
+ column: import("element-plus").TableColumnCtx<any>;
397
+ columnIndex: number;
398
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null, currentIndex: number, array: (((new (...args: any[]) => import("vue").CSSProperties | ((data: {
399
+ row: any;
400
+ rowIndex: number;
401
+ column: import("element-plus").TableColumnCtx<any>;
402
+ columnIndex: number;
403
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null)[]) => ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
404
+ row: any;
405
+ rowIndex: number;
406
+ column: import("element-plus").TableColumnCtx<any>;
407
+ columnIndex: number;
408
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null, initialValue: ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
409
+ row: any;
410
+ rowIndex: number;
411
+ column: import("element-plus").TableColumnCtx<any>;
412
+ columnIndex: number;
413
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null): ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
414
+ row: any;
415
+ rowIndex: number;
416
+ column: import("element-plus").TableColumnCtx<any>;
417
+ columnIndex: number;
418
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null;
419
+ <U>(callbackfn: (previousValue: U, currentValue: ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
420
+ row: any;
421
+ rowIndex: number;
422
+ column: import("element-plus").TableColumnCtx<any>;
423
+ columnIndex: number;
424
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null, currentIndex: number, array: (((new (...args: any[]) => import("vue").CSSProperties | ((data: {
425
+ row: any;
426
+ rowIndex: number;
427
+ column: import("element-plus").TableColumnCtx<any>;
428
+ columnIndex: number;
429
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null)[]) => U, initialValue: U): U;
430
+ } | undefined;
431
+ find?: {
432
+ <S extends ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
433
+ row: any;
434
+ rowIndex: number;
435
+ column: import("element-plus").TableColumnCtx<any>;
436
+ columnIndex: number;
437
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null>(predicate: (value: ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
438
+ row: any;
439
+ rowIndex: number;
440
+ column: import("element-plus").TableColumnCtx<any>;
441
+ columnIndex: number;
442
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null, index: number, obj: (((new (...args: any[]) => import("vue").CSSProperties | ((data: {
443
+ row: any;
444
+ rowIndex: number;
445
+ column: import("element-plus").TableColumnCtx<any>;
446
+ columnIndex: number;
447
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null)[]) => value is S, thisArg?: any): S | undefined;
448
+ (predicate: (value: ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
449
+ row: any;
450
+ rowIndex: number;
451
+ column: import("element-plus").TableColumnCtx<any>;
452
+ columnIndex: number;
453
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null, index: number, obj: (((new (...args: any[]) => import("vue").CSSProperties | ((data: {
454
+ row: any;
455
+ rowIndex: number;
456
+ column: import("element-plus").TableColumnCtx<any>;
457
+ columnIndex: number;
458
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null)[]) => unknown, thisArg?: any): ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
459
+ row: any;
460
+ rowIndex: number;
461
+ column: import("element-plus").TableColumnCtx<any>;
462
+ columnIndex: number;
463
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null | undefined;
464
+ } | undefined;
465
+ findIndex?: ((predicate: (value: ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
466
+ row: any;
467
+ rowIndex: number;
468
+ column: import("element-plus").TableColumnCtx<any>;
469
+ columnIndex: number;
470
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null, index: number, obj: (((new (...args: any[]) => import("vue").CSSProperties | ((data: {
471
+ row: any;
472
+ rowIndex: number;
473
+ column: import("element-plus").TableColumnCtx<any>;
474
+ columnIndex: number;
475
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null)[]) => unknown, thisArg?: any) => number) | undefined;
476
+ fill?: ((value: ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
477
+ row: any;
478
+ rowIndex: number;
479
+ column: import("element-plus").TableColumnCtx<any>;
480
+ columnIndex: number;
481
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null, start?: number, end?: number) => (((new (...args: any[]) => import("vue").CSSProperties | ((data: {
482
+ row: any;
483
+ rowIndex: number;
484
+ column: import("element-plus").TableColumnCtx<any>;
485
+ columnIndex: number;
486
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null)[]) | undefined;
487
+ copyWithin?: ((target: number, start: number, end?: number) => (((new (...args: any[]) => import("vue").CSSProperties | ((data: {
488
+ row: any;
489
+ rowIndex: number;
490
+ column: import("element-plus").TableColumnCtx<any>;
491
+ columnIndex: number;
492
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null)[]) | undefined;
493
+ entries?: (() => ArrayIterator<[number, ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
494
+ row: any;
495
+ rowIndex: number;
496
+ column: import("element-plus").TableColumnCtx<any>;
497
+ columnIndex: number;
498
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null]>) | undefined;
499
+ keys?: (() => ArrayIterator<number>) | undefined;
500
+ values?: (() => ArrayIterator<((new (...args: any[]) => import("vue").CSSProperties | ((data: {
501
+ row: any;
502
+ rowIndex: number;
503
+ column: import("element-plus").TableColumnCtx<any>;
504
+ columnIndex: number;
505
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null>) | undefined;
506
+ includes?: ((searchElement: ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
507
+ row: any;
508
+ rowIndex: number;
509
+ column: import("element-plus").TableColumnCtx<any>;
510
+ columnIndex: number;
511
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null, fromIndex?: number) => boolean) | undefined;
512
+ flatMap?: (<U, This = undefined>(callback: (this: This, value: ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
513
+ row: any;
514
+ rowIndex: number;
515
+ column: import("element-plus").TableColumnCtx<any>;
516
+ columnIndex: number;
517
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null, index: number, array: (((new (...args: any[]) => import("vue").CSSProperties | ((data: {
518
+ row: any;
519
+ rowIndex: number;
520
+ column: import("element-plus").TableColumnCtx<any>;
521
+ columnIndex: number;
522
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null)[]) => U | readonly U[], thisArg?: This | undefined) => U[]) | undefined;
523
+ flat?: (<A, D extends number = 1>(this: A, depth?: D | undefined) => FlatArray<A, D>[]) | undefined;
524
+ at?: ((index: number) => ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
525
+ row: any;
526
+ rowIndex: number;
527
+ column: import("element-plus").TableColumnCtx<any>;
528
+ columnIndex: number;
529
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null | undefined) | undefined;
530
+ findLast?: {
531
+ <S extends ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
532
+ row: any;
533
+ rowIndex: number;
534
+ column: import("element-plus").TableColumnCtx<any>;
535
+ columnIndex: number;
536
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null>(predicate: (value: ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
537
+ row: any;
538
+ rowIndex: number;
539
+ column: import("element-plus").TableColumnCtx<any>;
540
+ columnIndex: number;
541
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null, index: number, array: (((new (...args: any[]) => import("vue").CSSProperties | ((data: {
542
+ row: any;
543
+ rowIndex: number;
544
+ column: import("element-plus").TableColumnCtx<any>;
545
+ columnIndex: number;
546
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null)[]) => value is S, thisArg?: any): S | undefined;
547
+ (predicate: (value: ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
548
+ row: any;
549
+ rowIndex: number;
550
+ column: import("element-plus").TableColumnCtx<any>;
551
+ columnIndex: number;
552
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null, index: number, array: (((new (...args: any[]) => import("vue").CSSProperties | ((data: {
553
+ row: any;
554
+ rowIndex: number;
555
+ column: import("element-plus").TableColumnCtx<any>;
556
+ columnIndex: number;
557
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null)[]) => unknown, thisArg?: any): ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
558
+ row: any;
559
+ rowIndex: number;
560
+ column: import("element-plus").TableColumnCtx<any>;
561
+ columnIndex: number;
562
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null | undefined;
563
+ } | undefined;
564
+ findLastIndex?: ((predicate: (value: ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
565
+ row: any;
566
+ rowIndex: number;
567
+ column: import("element-plus").TableColumnCtx<any>;
568
+ columnIndex: number;
569
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null, index: number, array: (((new (...args: any[]) => import("vue").CSSProperties | ((data: {
570
+ row: any;
571
+ rowIndex: number;
572
+ column: import("element-plus").TableColumnCtx<any>;
573
+ columnIndex: number;
574
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null)[]) => unknown, thisArg?: any) => number) | undefined;
575
+ toReversed?: (() => (((new (...args: any[]) => import("vue").CSSProperties | ((data: {
576
+ row: any;
577
+ rowIndex: number;
578
+ column: import("element-plus").TableColumnCtx<any>;
579
+ columnIndex: number;
580
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null)[]) | undefined;
581
+ toSorted?: ((compareFn?: ((a: ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
582
+ row: any;
583
+ rowIndex: number;
584
+ column: import("element-plus").TableColumnCtx<any>;
585
+ columnIndex: number;
586
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null, b: ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
587
+ row: any;
588
+ rowIndex: number;
589
+ column: import("element-plus").TableColumnCtx<any>;
590
+ columnIndex: number;
591
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null) => number) | undefined) => (((new (...args: any[]) => import("vue").CSSProperties | ((data: {
592
+ row: any;
593
+ rowIndex: number;
594
+ column: import("element-plus").TableColumnCtx<any>;
595
+ columnIndex: number;
596
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null)[]) | undefined;
597
+ toSpliced?: {
598
+ (start: number, deleteCount: number, ...items: (((new (...args: any[]) => import("vue").CSSProperties | ((data: {
599
+ row: any;
600
+ rowIndex: number;
601
+ column: import("element-plus").TableColumnCtx<any>;
602
+ columnIndex: number;
603
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null)[]): (((new (...args: any[]) => import("vue").CSSProperties | ((data: {
604
+ row: any;
605
+ rowIndex: number;
606
+ column: import("element-plus").TableColumnCtx<any>;
607
+ columnIndex: number;
608
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null)[];
609
+ (start: number, deleteCount?: number): (((new (...args: any[]) => import("vue").CSSProperties | ((data: {
610
+ row: any;
611
+ rowIndex: number;
612
+ column: import("element-plus").TableColumnCtx<any>;
613
+ columnIndex: number;
614
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null)[];
615
+ } | undefined;
616
+ with?: ((index: number, value: ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
617
+ row: any;
618
+ rowIndex: number;
619
+ column: import("element-plus").TableColumnCtx<any>;
620
+ columnIndex: number;
621
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null) => (((new (...args: any[]) => import("vue").CSSProperties | ((data: {
622
+ row: any;
623
+ rowIndex: number;
624
+ column: import("element-plus").TableColumnCtx<any>;
625
+ columnIndex: number;
626
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null)[]) | undefined;
627
+ [Symbol.iterator]?: (() => ArrayIterator<((new (...args: any[]) => import("vue").CSSProperties | ((data: {
628
+ row: any;
629
+ rowIndex: number;
630
+ column: import("element-plus").TableColumnCtx<any>;
631
+ columnIndex: number;
632
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null>) | undefined;
633
+ [Symbol.unscopables]?: {
634
+ [x: number]: boolean | undefined;
635
+ length?: boolean | undefined;
636
+ toString?: boolean | undefined;
637
+ toLocaleString?: boolean | undefined;
638
+ pop?: boolean | undefined;
639
+ push?: boolean | undefined;
640
+ concat?: boolean | undefined;
641
+ join?: boolean | undefined;
642
+ reverse?: boolean | undefined;
643
+ shift?: boolean | undefined;
644
+ slice?: boolean | undefined;
645
+ sort?: boolean | undefined;
646
+ splice?: boolean | undefined;
647
+ unshift?: boolean | undefined;
648
+ indexOf?: boolean | undefined;
649
+ lastIndexOf?: boolean | undefined;
650
+ every?: boolean | undefined;
651
+ some?: boolean | undefined;
652
+ forEach?: boolean | undefined;
653
+ map?: boolean | undefined;
654
+ filter?: boolean | undefined;
655
+ reduce?: boolean | undefined;
656
+ reduceRight?: boolean | undefined;
657
+ find?: boolean | undefined;
658
+ findIndex?: boolean | undefined;
659
+ fill?: boolean | undefined;
660
+ copyWithin?: boolean | undefined;
661
+ entries?: boolean | undefined;
662
+ keys?: boolean | undefined;
663
+ values?: boolean | undefined;
664
+ includes?: boolean | undefined;
665
+ flatMap?: boolean | undefined;
666
+ flat?: boolean | undefined;
667
+ at?: boolean | undefined;
668
+ findLast?: boolean | undefined;
669
+ findLastIndex?: boolean | undefined;
670
+ toReversed?: boolean | undefined;
671
+ toSorted?: boolean | undefined;
672
+ toSpliced?: boolean | undefined;
673
+ with?: boolean | undefined;
674
+ [Symbol.iterator]?: boolean | undefined;
675
+ readonly [Symbol.unscopables]?: boolean | undefined;
676
+ } | undefined;
677
+ };
678
+ data: {
679
+ type: import("vue").PropType<any[]>;
680
+ default: () => never[];
681
+ };
682
+ width: (NumberConstructor | StringConstructor)[];
683
+ height: (NumberConstructor | StringConstructor)[];
684
+ maxHeight: (NumberConstructor | StringConstructor)[];
685
+ fit: {
686
+ type: BooleanConstructor;
687
+ default: boolean;
688
+ };
689
+ stripe: BooleanConstructor;
690
+ rowKey: import("vue").PropType<import("element-plus").TableProps<any>["rowKey"]>;
691
+ showHeader: {
692
+ type: BooleanConstructor;
693
+ default: boolean;
694
+ };
695
+ showSummary: BooleanConstructor;
696
+ sumText: StringConstructor;
697
+ summaryMethod: import("vue").PropType<import("element-plus").TableProps<any>["summaryMethod"]>;
698
+ rowClassName: import("vue").PropType<import("element-plus").TableProps<any>["rowClassName"]>;
699
+ rowStyle: import("vue").PropType<import("element-plus").TableProps<any>["rowStyle"]>;
700
+ cellClassName: import("vue").PropType<import("element-plus").TableProps<any>["cellClassName"]>;
701
+ cellStyle: import("vue").PropType<import("element-plus").TableProps<any>["cellStyle"]>;
702
+ headerRowClassName: import("vue").PropType<import("element-plus").TableProps<any>["headerRowClassName"]>;
703
+ headerRowStyle: import("vue").PropType<import("element-plus").TableProps<any>["headerRowStyle"]>;
704
+ headerCellClassName: import("vue").PropType<import("element-plus").TableProps<any>["headerCellClassName"]>;
705
+ highlightCurrentRow: BooleanConstructor;
706
+ currentRowKey: (NumberConstructor | StringConstructor)[];
707
+ emptyText: StringConstructor;
708
+ expandRowKeys: import("vue").PropType<import("element-plus").TableProps<any>["expandRowKeys"]>;
709
+ defaultExpandAll: BooleanConstructor;
710
+ defaultSort: import("vue").PropType<import("element-plus").TableProps<any>["defaultSort"]>;
711
+ tooltipEffect: StringConstructor;
712
+ tooltipOptions: import("vue").PropType<import("element-plus").TableProps<any>["tooltipOptions"]>;
713
+ spanMethod: import("vue").PropType<import("element-plus").TableProps<any>["spanMethod"]>;
714
+ selectOnIndeterminate: {
715
+ type: BooleanConstructor;
716
+ default: boolean;
717
+ };
718
+ indent: {
719
+ type: NumberConstructor;
720
+ default: number;
721
+ };
722
+ treeProps: {
723
+ type: import("vue").PropType<import("element-plus").TableProps<any>["treeProps"]>;
724
+ default: () => {
725
+ hasChildren: string;
726
+ children: string;
727
+ checkStrictly: boolean;
728
+ };
729
+ };
730
+ lazy: BooleanConstructor;
731
+ load: import("vue").PropType<import("element-plus").TableProps<any>["load"]>;
732
+ style: {
733
+ type: import("vue").PropType<import("element-plus").TableProps<any>["style"]>;
734
+ default: () => {};
735
+ };
736
+ className: {
737
+ type: StringConstructor;
738
+ default: string;
739
+ };
740
+ tableLayout: {
741
+ type: import("vue").PropType<"fixed" | "auto">;
742
+ default: string;
743
+ };
744
+ scrollbarAlwaysOn: BooleanConstructor;
745
+ flexible: BooleanConstructor;
746
+ showOverflowTooltip: import("vue").PropType<import("element-plus").TableProps<any>["showOverflowTooltip"]>;
747
+ tooltipFormatter: import("vue").PropType<import("element-plus").TableProps<any>["tooltipFormatter"]>;
748
+ appendFilterPanelTo: StringConstructor;
749
+ scrollbarTabindex: {
750
+ type: (NumberConstructor | StringConstructor)[];
751
+ default: undefined;
752
+ };
753
+ allowDragLastColumn: {
754
+ type: BooleanConstructor;
755
+ default: boolean;
756
+ };
757
+ preserveExpandedContent: BooleanConstructor;
758
+ nativeScrollbar: BooleanConstructor;
759
+ }>, {
760
+ elFormRef: Readonly<import("vue").ShallowRef<import("element-plus").FormInstance | null>>;
761
+ elTableRef: Readonly<import("vue").ShallowRef<import("element-plus").TableInstance | null>>;
762
+ validate: () => import("element-plus").FormValidationResult;
763
+ resetFields: (props: import("element-plus").FormItemProp) => void;
764
+ clearValidate: (props: import("element-plus").FormItemProp) => void;
765
+ search: import("./use-table").ISearch;
766
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
767
+ "current-change": (...args: any[]) => void;
768
+ select: (...args: any[]) => void;
769
+ scroll: (...args: any[]) => void;
770
+ "select-all": (...args: any[]) => void;
771
+ "expand-change": (...args: any[]) => void;
772
+ "header-click": (...args: any[]) => void;
773
+ "header-contextmenu": (...args: any[]) => void;
774
+ "header-dragend": (...args: any[]) => void;
775
+ "selection-change": (...args: any[]) => void;
776
+ "sort-change": (...args: any[]) => void;
777
+ "filter-change": (...args: any[]) => void;
778
+ "cell-mouse-enter": (...args: any[]) => void;
779
+ "cell-mouse-leave": (...args: any[]) => void;
780
+ "cell-contextmenu": (...args: any[]) => void;
781
+ "cell-click": (...args: any[]) => void;
782
+ "cell-dblclick": (...args: any[]) => void;
783
+ "row-click": (...args: any[]) => void;
784
+ "row-contextmenu": (...args: any[]) => void;
785
+ "row-dblclick": (...args: any[]) => void;
786
+ }, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
787
+ columns: {
788
+ type: import("vue").PropType<import("./table").TableColumn[]>;
789
+ default: () => never[];
790
+ };
791
+ showSelectionCol: BooleanConstructor;
792
+ showIndexCol: {
793
+ type: BooleanConstructor;
794
+ default: boolean;
795
+ };
796
+ align: {
797
+ type: import("vue").PropType<"left" | "center" | "right">;
798
+ default: string;
799
+ };
800
+ indexFormatter: {
801
+ type: import("vue").PropType<import("element-plus").TableColumnCtx["index"]>;
802
+ };
803
+ disabled: BooleanConstructor;
804
+ reserveSelection: BooleanConstructor;
805
+ selectable: {
806
+ type: import("vue").PropType<import("element-plus").TableColumnCtx["selectable"]>;
807
+ };
808
+ paginationProps: {
809
+ type: import("vue").PropType<Partial<import("element-plus").PaginationProps & import("packages/utils/type").WithOnPrefixAndCamelCase<import("element-plus").PaginationEmits>>>;
810
+ default: () => {};
811
+ };
812
+ showPagination: BooleanConstructor;
813
+ isFrontPage: BooleanConstructor;
814
+ actionButtons: {
815
+ type: import("vue").PropType<import("packages/el-plus").ButtonProps[]>;
816
+ default: () => never[];
817
+ };
818
+ linkProps: {
819
+ type: import("vue").PropType<import("packages/el-plus").ButtonProps[]>;
820
+ default: () => never[];
821
+ };
822
+ api: {
823
+ type: import("vue").PropType<import("packages/utils/type").Api>;
824
+ };
825
+ method: {
826
+ type: import("vue").PropType<import("axios").Method>;
827
+ };
828
+ reqData: {
829
+ type: ObjectConstructor;
830
+ };
831
+ reqParams: {
832
+ type: ObjectConstructor;
833
+ };
834
+ reqBefore: {
835
+ type: import("vue").PropType<import("packages/utils/type").ReqBefore>;
836
+ };
837
+ reqAfter: {
838
+ type: import("vue").PropType<import("packages/utils/type").ReqAfter>;
839
+ };
840
+ size: {
841
+ default: string;
842
+ type: import("vue").PropType<import("element-plus/es/utils").EpPropMergeType<StringConstructor, "" | "small" | "default" | "large", never>>;
843
+ required: false;
844
+ validator: ((val: unknown) => boolean) | undefined;
845
+ __epPropKey: true;
846
+ };
847
+ border: {
848
+ default: boolean;
849
+ prototype: Boolean;
850
+ };
851
+ headerCellStyle: {
852
+ default: () => {
853
+ background: string;
854
+ fontSize: string;
855
+ color: string;
856
+ };
857
+ length?: number | undefined;
858
+ toString?: (() => string) | undefined;
859
+ toLocaleString?: {
860
+ (): string;
861
+ (locales: string | string[], options?: Intl.NumberFormatOptions & Intl.DateTimeFormatOptions): string;
862
+ } | undefined;
863
+ pop?: (() => ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
864
+ row: any;
865
+ rowIndex: number;
866
+ column: import("element-plus").TableColumnCtx<any>;
867
+ columnIndex: number;
868
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null | undefined) | undefined;
869
+ push?: ((...items: (((new (...args: any[]) => import("vue").CSSProperties | ((data: {
870
+ row: any;
871
+ rowIndex: number;
872
+ column: import("element-plus").TableColumnCtx<any>;
873
+ columnIndex: number;
874
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null)[]) => number) | undefined;
875
+ concat?: {
876
+ (...items: ConcatArray<((new (...args: any[]) => import("vue").CSSProperties | ((data: {
877
+ row: any;
878
+ rowIndex: number;
879
+ column: import("element-plus").TableColumnCtx<any>;
880
+ columnIndex: number;
881
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null>[]): (((new (...args: any[]) => import("vue").CSSProperties | ((data: {
882
+ row: any;
883
+ rowIndex: number;
884
+ column: import("element-plus").TableColumnCtx<any>;
885
+ columnIndex: number;
886
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null)[];
887
+ (...items: (((new (...args: any[]) => import("vue").CSSProperties | ((data: {
888
+ row: any;
889
+ rowIndex: number;
890
+ column: import("element-plus").TableColumnCtx<any>;
891
+ columnIndex: number;
892
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | ConcatArray<((new (...args: any[]) => import("vue").CSSProperties | ((data: {
893
+ row: any;
894
+ rowIndex: number;
895
+ column: import("element-plus").TableColumnCtx<any>;
896
+ columnIndex: number;
897
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null> | null)[]): (((new (...args: any[]) => import("vue").CSSProperties | ((data: {
898
+ row: any;
899
+ rowIndex: number;
900
+ column: import("element-plus").TableColumnCtx<any>;
901
+ columnIndex: number;
902
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null)[];
903
+ } | undefined;
904
+ join?: ((separator?: string) => string) | undefined;
905
+ reverse?: (() => (((new (...args: any[]) => import("vue").CSSProperties | ((data: {
906
+ row: any;
907
+ rowIndex: number;
908
+ column: import("element-plus").TableColumnCtx<any>;
909
+ columnIndex: number;
910
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null)[]) | undefined;
911
+ shift?: (() => ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
912
+ row: any;
913
+ rowIndex: number;
914
+ column: import("element-plus").TableColumnCtx<any>;
915
+ columnIndex: number;
916
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null | undefined) | undefined;
917
+ slice?: ((start?: number, end?: number) => (((new (...args: any[]) => import("vue").CSSProperties | ((data: {
918
+ row: any;
919
+ rowIndex: number;
920
+ column: import("element-plus").TableColumnCtx<any>;
921
+ columnIndex: number;
922
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null)[]) | undefined;
923
+ sort?: ((compareFn?: ((a: ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
924
+ row: any;
925
+ rowIndex: number;
926
+ column: import("element-plus").TableColumnCtx<any>;
927
+ columnIndex: number;
928
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null, b: ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
929
+ row: any;
930
+ rowIndex: number;
931
+ column: import("element-plus").TableColumnCtx<any>;
932
+ columnIndex: number;
933
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null) => number) | undefined) => (((new (...args: any[]) => import("vue").CSSProperties | ((data: {
934
+ row: any;
935
+ rowIndex: number;
936
+ column: import("element-plus").TableColumnCtx<any>;
937
+ columnIndex: number;
938
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null)[]) | undefined;
939
+ splice?: {
940
+ (start: number, deleteCount?: number): (((new (...args: any[]) => import("vue").CSSProperties | ((data: {
941
+ row: any;
942
+ rowIndex: number;
943
+ column: import("element-plus").TableColumnCtx<any>;
944
+ columnIndex: number;
945
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null)[];
946
+ (start: number, deleteCount: number, ...items: (((new (...args: any[]) => import("vue").CSSProperties | ((data: {
947
+ row: any;
948
+ rowIndex: number;
949
+ column: import("element-plus").TableColumnCtx<any>;
950
+ columnIndex: number;
951
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null)[]): (((new (...args: any[]) => import("vue").CSSProperties | ((data: {
952
+ row: any;
953
+ rowIndex: number;
954
+ column: import("element-plus").TableColumnCtx<any>;
955
+ columnIndex: number;
956
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null)[];
957
+ } | undefined;
958
+ unshift?: ((...items: (((new (...args: any[]) => import("vue").CSSProperties | ((data: {
959
+ row: any;
960
+ rowIndex: number;
961
+ column: import("element-plus").TableColumnCtx<any>;
962
+ columnIndex: number;
963
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null)[]) => number) | undefined;
964
+ indexOf?: ((searchElement: ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
965
+ row: any;
966
+ rowIndex: number;
967
+ column: import("element-plus").TableColumnCtx<any>;
968
+ columnIndex: number;
969
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null, fromIndex?: number) => number) | undefined;
970
+ lastIndexOf?: ((searchElement: ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
971
+ row: any;
972
+ rowIndex: number;
973
+ column: import("element-plus").TableColumnCtx<any>;
974
+ columnIndex: number;
975
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null, fromIndex?: number) => number) | undefined;
976
+ every?: {
977
+ <S extends ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
978
+ row: any;
979
+ rowIndex: number;
980
+ column: import("element-plus").TableColumnCtx<any>;
981
+ columnIndex: number;
982
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null>(predicate: (value: ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
983
+ row: any;
984
+ rowIndex: number;
985
+ column: import("element-plus").TableColumnCtx<any>;
986
+ columnIndex: number;
987
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null, index: number, array: (((new (...args: any[]) => import("vue").CSSProperties | ((data: {
988
+ row: any;
989
+ rowIndex: number;
990
+ column: import("element-plus").TableColumnCtx<any>;
991
+ columnIndex: number;
992
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null)[]) => value is S, thisArg?: any): this is S[];
993
+ (predicate: (value: ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
994
+ row: any;
995
+ rowIndex: number;
996
+ column: import("element-plus").TableColumnCtx<any>;
997
+ columnIndex: number;
998
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null, index: number, array: (((new (...args: any[]) => import("vue").CSSProperties | ((data: {
999
+ row: any;
1000
+ rowIndex: number;
1001
+ column: import("element-plus").TableColumnCtx<any>;
1002
+ columnIndex: number;
1003
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null)[]) => unknown, thisArg?: any): boolean;
1004
+ } | undefined;
1005
+ some?: ((predicate: (value: ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
1006
+ row: any;
1007
+ rowIndex: number;
1008
+ column: import("element-plus").TableColumnCtx<any>;
1009
+ columnIndex: number;
1010
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null, index: number, array: (((new (...args: any[]) => import("vue").CSSProperties | ((data: {
1011
+ row: any;
1012
+ rowIndex: number;
1013
+ column: import("element-plus").TableColumnCtx<any>;
1014
+ columnIndex: number;
1015
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null)[]) => unknown, thisArg?: any) => boolean) | undefined;
1016
+ forEach?: ((callbackfn: (value: ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
1017
+ row: any;
1018
+ rowIndex: number;
1019
+ column: import("element-plus").TableColumnCtx<any>;
1020
+ columnIndex: number;
1021
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null, index: number, array: (((new (...args: any[]) => import("vue").CSSProperties | ((data: {
1022
+ row: any;
1023
+ rowIndex: number;
1024
+ column: import("element-plus").TableColumnCtx<any>;
1025
+ columnIndex: number;
1026
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null)[]) => void, thisArg?: any) => void) | undefined;
1027
+ map?: (<U>(callbackfn: (value: ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
1028
+ row: any;
1029
+ rowIndex: number;
1030
+ column: import("element-plus").TableColumnCtx<any>;
1031
+ columnIndex: number;
1032
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null, index: number, array: (((new (...args: any[]) => import("vue").CSSProperties | ((data: {
1033
+ row: any;
1034
+ rowIndex: number;
1035
+ column: import("element-plus").TableColumnCtx<any>;
1036
+ columnIndex: number;
1037
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null)[]) => U, thisArg?: any) => U[]) | undefined;
1038
+ filter?: {
1039
+ <S extends ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
1040
+ row: any;
1041
+ rowIndex: number;
1042
+ column: import("element-plus").TableColumnCtx<any>;
1043
+ columnIndex: number;
1044
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null>(predicate: (value: ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
1045
+ row: any;
1046
+ rowIndex: number;
1047
+ column: import("element-plus").TableColumnCtx<any>;
1048
+ columnIndex: number;
1049
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null, index: number, array: (((new (...args: any[]) => import("vue").CSSProperties | ((data: {
1050
+ row: any;
1051
+ rowIndex: number;
1052
+ column: import("element-plus").TableColumnCtx<any>;
1053
+ columnIndex: number;
1054
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null)[]) => value is S, thisArg?: any): S[];
1055
+ (predicate: (value: ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
1056
+ row: any;
1057
+ rowIndex: number;
1058
+ column: import("element-plus").TableColumnCtx<any>;
1059
+ columnIndex: number;
1060
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null, index: number, array: (((new (...args: any[]) => import("vue").CSSProperties | ((data: {
1061
+ row: any;
1062
+ rowIndex: number;
1063
+ column: import("element-plus").TableColumnCtx<any>;
1064
+ columnIndex: number;
1065
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null)[]) => unknown, thisArg?: any): (((new (...args: any[]) => import("vue").CSSProperties | ((data: {
1066
+ row: any;
1067
+ rowIndex: number;
1068
+ column: import("element-plus").TableColumnCtx<any>;
1069
+ columnIndex: number;
1070
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null)[];
1071
+ } | undefined;
1072
+ reduce?: {
1073
+ (callbackfn: (previousValue: ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
1074
+ row: any;
1075
+ rowIndex: number;
1076
+ column: import("element-plus").TableColumnCtx<any>;
1077
+ columnIndex: number;
1078
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null, currentValue: ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
1079
+ row: any;
1080
+ rowIndex: number;
1081
+ column: import("element-plus").TableColumnCtx<any>;
1082
+ columnIndex: number;
1083
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null, currentIndex: number, array: (((new (...args: any[]) => import("vue").CSSProperties | ((data: {
1084
+ row: any;
1085
+ rowIndex: number;
1086
+ column: import("element-plus").TableColumnCtx<any>;
1087
+ columnIndex: number;
1088
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null)[]) => ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
1089
+ row: any;
1090
+ rowIndex: number;
1091
+ column: import("element-plus").TableColumnCtx<any>;
1092
+ columnIndex: number;
1093
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null): ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
1094
+ row: any;
1095
+ rowIndex: number;
1096
+ column: import("element-plus").TableColumnCtx<any>;
1097
+ columnIndex: number;
1098
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null;
1099
+ (callbackfn: (previousValue: ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
1100
+ row: any;
1101
+ rowIndex: number;
1102
+ column: import("element-plus").TableColumnCtx<any>;
1103
+ columnIndex: number;
1104
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null, currentValue: ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
1105
+ row: any;
1106
+ rowIndex: number;
1107
+ column: import("element-plus").TableColumnCtx<any>;
1108
+ columnIndex: number;
1109
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null, currentIndex: number, array: (((new (...args: any[]) => import("vue").CSSProperties | ((data: {
1110
+ row: any;
1111
+ rowIndex: number;
1112
+ column: import("element-plus").TableColumnCtx<any>;
1113
+ columnIndex: number;
1114
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null)[]) => ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
1115
+ row: any;
1116
+ rowIndex: number;
1117
+ column: import("element-plus").TableColumnCtx<any>;
1118
+ columnIndex: number;
1119
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null, initialValue: ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
1120
+ row: any;
1121
+ rowIndex: number;
1122
+ column: import("element-plus").TableColumnCtx<any>;
1123
+ columnIndex: number;
1124
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null): ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
1125
+ row: any;
1126
+ rowIndex: number;
1127
+ column: import("element-plus").TableColumnCtx<any>;
1128
+ columnIndex: number;
1129
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null;
1130
+ <U>(callbackfn: (previousValue: U, currentValue: ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
1131
+ row: any;
1132
+ rowIndex: number;
1133
+ column: import("element-plus").TableColumnCtx<any>;
1134
+ columnIndex: number;
1135
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null, currentIndex: number, array: (((new (...args: any[]) => import("vue").CSSProperties | ((data: {
1136
+ row: any;
1137
+ rowIndex: number;
1138
+ column: import("element-plus").TableColumnCtx<any>;
1139
+ columnIndex: number;
1140
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null)[]) => U, initialValue: U): U;
1141
+ } | undefined;
1142
+ reduceRight?: {
1143
+ (callbackfn: (previousValue: ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
1144
+ row: any;
1145
+ rowIndex: number;
1146
+ column: import("element-plus").TableColumnCtx<any>;
1147
+ columnIndex: number;
1148
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null, currentValue: ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
1149
+ row: any;
1150
+ rowIndex: number;
1151
+ column: import("element-plus").TableColumnCtx<any>;
1152
+ columnIndex: number;
1153
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null, currentIndex: number, array: (((new (...args: any[]) => import("vue").CSSProperties | ((data: {
1154
+ row: any;
1155
+ rowIndex: number;
1156
+ column: import("element-plus").TableColumnCtx<any>;
1157
+ columnIndex: number;
1158
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null)[]) => ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
1159
+ row: any;
1160
+ rowIndex: number;
1161
+ column: import("element-plus").TableColumnCtx<any>;
1162
+ columnIndex: number;
1163
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null): ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
1164
+ row: any;
1165
+ rowIndex: number;
1166
+ column: import("element-plus").TableColumnCtx<any>;
1167
+ columnIndex: number;
1168
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null;
1169
+ (callbackfn: (previousValue: ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
1170
+ row: any;
1171
+ rowIndex: number;
1172
+ column: import("element-plus").TableColumnCtx<any>;
1173
+ columnIndex: number;
1174
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null, currentValue: ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
1175
+ row: any;
1176
+ rowIndex: number;
1177
+ column: import("element-plus").TableColumnCtx<any>;
1178
+ columnIndex: number;
1179
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null, currentIndex: number, array: (((new (...args: any[]) => import("vue").CSSProperties | ((data: {
1180
+ row: any;
1181
+ rowIndex: number;
1182
+ column: import("element-plus").TableColumnCtx<any>;
1183
+ columnIndex: number;
1184
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null)[]) => ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
1185
+ row: any;
1186
+ rowIndex: number;
1187
+ column: import("element-plus").TableColumnCtx<any>;
1188
+ columnIndex: number;
1189
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null, initialValue: ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
1190
+ row: any;
1191
+ rowIndex: number;
1192
+ column: import("element-plus").TableColumnCtx<any>;
1193
+ columnIndex: number;
1194
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null): ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
1195
+ row: any;
1196
+ rowIndex: number;
1197
+ column: import("element-plus").TableColumnCtx<any>;
1198
+ columnIndex: number;
1199
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null;
1200
+ <U>(callbackfn: (previousValue: U, currentValue: ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
1201
+ row: any;
1202
+ rowIndex: number;
1203
+ column: import("element-plus").TableColumnCtx<any>;
1204
+ columnIndex: number;
1205
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null, currentIndex: number, array: (((new (...args: any[]) => import("vue").CSSProperties | ((data: {
1206
+ row: any;
1207
+ rowIndex: number;
1208
+ column: import("element-plus").TableColumnCtx<any>;
1209
+ columnIndex: number;
1210
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null)[]) => U, initialValue: U): U;
1211
+ } | undefined;
1212
+ find?: {
1213
+ <S extends ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
1214
+ row: any;
1215
+ rowIndex: number;
1216
+ column: import("element-plus").TableColumnCtx<any>;
1217
+ columnIndex: number;
1218
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null>(predicate: (value: ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
1219
+ row: any;
1220
+ rowIndex: number;
1221
+ column: import("element-plus").TableColumnCtx<any>;
1222
+ columnIndex: number;
1223
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null, index: number, obj: (((new (...args: any[]) => import("vue").CSSProperties | ((data: {
1224
+ row: any;
1225
+ rowIndex: number;
1226
+ column: import("element-plus").TableColumnCtx<any>;
1227
+ columnIndex: number;
1228
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null)[]) => value is S, thisArg?: any): S | undefined;
1229
+ (predicate: (value: ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
1230
+ row: any;
1231
+ rowIndex: number;
1232
+ column: import("element-plus").TableColumnCtx<any>;
1233
+ columnIndex: number;
1234
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null, index: number, obj: (((new (...args: any[]) => import("vue").CSSProperties | ((data: {
1235
+ row: any;
1236
+ rowIndex: number;
1237
+ column: import("element-plus").TableColumnCtx<any>;
1238
+ columnIndex: number;
1239
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null)[]) => unknown, thisArg?: any): ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
1240
+ row: any;
1241
+ rowIndex: number;
1242
+ column: import("element-plus").TableColumnCtx<any>;
1243
+ columnIndex: number;
1244
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null | undefined;
1245
+ } | undefined;
1246
+ findIndex?: ((predicate: (value: ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
1247
+ row: any;
1248
+ rowIndex: number;
1249
+ column: import("element-plus").TableColumnCtx<any>;
1250
+ columnIndex: number;
1251
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null, index: number, obj: (((new (...args: any[]) => import("vue").CSSProperties | ((data: {
1252
+ row: any;
1253
+ rowIndex: number;
1254
+ column: import("element-plus").TableColumnCtx<any>;
1255
+ columnIndex: number;
1256
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null)[]) => unknown, thisArg?: any) => number) | undefined;
1257
+ fill?: ((value: ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
1258
+ row: any;
1259
+ rowIndex: number;
1260
+ column: import("element-plus").TableColumnCtx<any>;
1261
+ columnIndex: number;
1262
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null, start?: number, end?: number) => (((new (...args: any[]) => import("vue").CSSProperties | ((data: {
1263
+ row: any;
1264
+ rowIndex: number;
1265
+ column: import("element-plus").TableColumnCtx<any>;
1266
+ columnIndex: number;
1267
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null)[]) | undefined;
1268
+ copyWithin?: ((target: number, start: number, end?: number) => (((new (...args: any[]) => import("vue").CSSProperties | ((data: {
1269
+ row: any;
1270
+ rowIndex: number;
1271
+ column: import("element-plus").TableColumnCtx<any>;
1272
+ columnIndex: number;
1273
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null)[]) | undefined;
1274
+ entries?: (() => ArrayIterator<[number, ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
1275
+ row: any;
1276
+ rowIndex: number;
1277
+ column: import("element-plus").TableColumnCtx<any>;
1278
+ columnIndex: number;
1279
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null]>) | undefined;
1280
+ keys?: (() => ArrayIterator<number>) | undefined;
1281
+ values?: (() => ArrayIterator<((new (...args: any[]) => import("vue").CSSProperties | ((data: {
1282
+ row: any;
1283
+ rowIndex: number;
1284
+ column: import("element-plus").TableColumnCtx<any>;
1285
+ columnIndex: number;
1286
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null>) | undefined;
1287
+ includes?: ((searchElement: ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
1288
+ row: any;
1289
+ rowIndex: number;
1290
+ column: import("element-plus").TableColumnCtx<any>;
1291
+ columnIndex: number;
1292
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null, fromIndex?: number) => boolean) | undefined;
1293
+ flatMap?: (<U, This = undefined>(callback: (this: This, value: ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
1294
+ row: any;
1295
+ rowIndex: number;
1296
+ column: import("element-plus").TableColumnCtx<any>;
1297
+ columnIndex: number;
1298
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null, index: number, array: (((new (...args: any[]) => import("vue").CSSProperties | ((data: {
1299
+ row: any;
1300
+ rowIndex: number;
1301
+ column: import("element-plus").TableColumnCtx<any>;
1302
+ columnIndex: number;
1303
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null)[]) => U | readonly U[], thisArg?: This | undefined) => U[]) | undefined;
1304
+ flat?: (<A, D extends number = 1>(this: A, depth?: D | undefined) => FlatArray<A, D>[]) | undefined;
1305
+ at?: ((index: number) => ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
1306
+ row: any;
1307
+ rowIndex: number;
1308
+ column: import("element-plus").TableColumnCtx<any>;
1309
+ columnIndex: number;
1310
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null | undefined) | undefined;
1311
+ findLast?: {
1312
+ <S extends ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
1313
+ row: any;
1314
+ rowIndex: number;
1315
+ column: import("element-plus").TableColumnCtx<any>;
1316
+ columnIndex: number;
1317
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null>(predicate: (value: ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
1318
+ row: any;
1319
+ rowIndex: number;
1320
+ column: import("element-plus").TableColumnCtx<any>;
1321
+ columnIndex: number;
1322
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null, index: number, array: (((new (...args: any[]) => import("vue").CSSProperties | ((data: {
1323
+ row: any;
1324
+ rowIndex: number;
1325
+ column: import("element-plus").TableColumnCtx<any>;
1326
+ columnIndex: number;
1327
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null)[]) => value is S, thisArg?: any): S | undefined;
1328
+ (predicate: (value: ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
1329
+ row: any;
1330
+ rowIndex: number;
1331
+ column: import("element-plus").TableColumnCtx<any>;
1332
+ columnIndex: number;
1333
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null, index: number, array: (((new (...args: any[]) => import("vue").CSSProperties | ((data: {
1334
+ row: any;
1335
+ rowIndex: number;
1336
+ column: import("element-plus").TableColumnCtx<any>;
1337
+ columnIndex: number;
1338
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null)[]) => unknown, thisArg?: any): ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
1339
+ row: any;
1340
+ rowIndex: number;
1341
+ column: import("element-plus").TableColumnCtx<any>;
1342
+ columnIndex: number;
1343
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null | undefined;
1344
+ } | undefined;
1345
+ findLastIndex?: ((predicate: (value: ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
1346
+ row: any;
1347
+ rowIndex: number;
1348
+ column: import("element-plus").TableColumnCtx<any>;
1349
+ columnIndex: number;
1350
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null, index: number, array: (((new (...args: any[]) => import("vue").CSSProperties | ((data: {
1351
+ row: any;
1352
+ rowIndex: number;
1353
+ column: import("element-plus").TableColumnCtx<any>;
1354
+ columnIndex: number;
1355
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null)[]) => unknown, thisArg?: any) => number) | undefined;
1356
+ toReversed?: (() => (((new (...args: any[]) => import("vue").CSSProperties | ((data: {
1357
+ row: any;
1358
+ rowIndex: number;
1359
+ column: import("element-plus").TableColumnCtx<any>;
1360
+ columnIndex: number;
1361
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null)[]) | undefined;
1362
+ toSorted?: ((compareFn?: ((a: ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
1363
+ row: any;
1364
+ rowIndex: number;
1365
+ column: import("element-plus").TableColumnCtx<any>;
1366
+ columnIndex: number;
1367
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null, b: ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
1368
+ row: any;
1369
+ rowIndex: number;
1370
+ column: import("element-plus").TableColumnCtx<any>;
1371
+ columnIndex: number;
1372
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null) => number) | undefined) => (((new (...args: any[]) => import("vue").CSSProperties | ((data: {
1373
+ row: any;
1374
+ rowIndex: number;
1375
+ column: import("element-plus").TableColumnCtx<any>;
1376
+ columnIndex: number;
1377
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null)[]) | undefined;
1378
+ toSpliced?: {
1379
+ (start: number, deleteCount: number, ...items: (((new (...args: any[]) => import("vue").CSSProperties | ((data: {
1380
+ row: any;
1381
+ rowIndex: number;
1382
+ column: import("element-plus").TableColumnCtx<any>;
1383
+ columnIndex: number;
1384
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null)[]): (((new (...args: any[]) => import("vue").CSSProperties | ((data: {
1385
+ row: any;
1386
+ rowIndex: number;
1387
+ column: import("element-plus").TableColumnCtx<any>;
1388
+ columnIndex: number;
1389
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null)[];
1390
+ (start: number, deleteCount?: number): (((new (...args: any[]) => import("vue").CSSProperties | ((data: {
1391
+ row: any;
1392
+ rowIndex: number;
1393
+ column: import("element-plus").TableColumnCtx<any>;
1394
+ columnIndex: number;
1395
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null)[];
1396
+ } | undefined;
1397
+ with?: ((index: number, value: ((new (...args: any[]) => import("vue").CSSProperties | ((data: {
1398
+ row: any;
1399
+ rowIndex: number;
1400
+ column: import("element-plus").TableColumnCtx<any>;
1401
+ columnIndex: number;
1402
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null) => (((new (...args: any[]) => import("vue").CSSProperties | ((data: {
1403
+ row: any;
1404
+ rowIndex: number;
1405
+ column: import("element-plus").TableColumnCtx<any>;
1406
+ columnIndex: number;
1407
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null)[]) | undefined;
1408
+ [Symbol.iterator]?: (() => ArrayIterator<((new (...args: any[]) => import("vue").CSSProperties | ((data: {
1409
+ row: any;
1410
+ rowIndex: number;
1411
+ column: import("element-plus").TableColumnCtx<any>;
1412
+ columnIndex: number;
1413
+ }) => import("vue").CSSProperties)) | (() => import("element-plus").CellStyle<any> | undefined)) | null>) | undefined;
1414
+ [Symbol.unscopables]?: {
1415
+ [x: number]: boolean | undefined;
1416
+ length?: boolean | undefined;
1417
+ toString?: boolean | undefined;
1418
+ toLocaleString?: boolean | undefined;
1419
+ pop?: boolean | undefined;
1420
+ push?: boolean | undefined;
1421
+ concat?: boolean | undefined;
1422
+ join?: boolean | undefined;
1423
+ reverse?: boolean | undefined;
1424
+ shift?: boolean | undefined;
1425
+ slice?: boolean | undefined;
1426
+ sort?: boolean | undefined;
1427
+ splice?: boolean | undefined;
1428
+ unshift?: boolean | undefined;
1429
+ indexOf?: boolean | undefined;
1430
+ lastIndexOf?: boolean | undefined;
1431
+ every?: boolean | undefined;
1432
+ some?: boolean | undefined;
1433
+ forEach?: boolean | undefined;
1434
+ map?: boolean | undefined;
1435
+ filter?: boolean | undefined;
1436
+ reduce?: boolean | undefined;
1437
+ reduceRight?: boolean | undefined;
1438
+ find?: boolean | undefined;
1439
+ findIndex?: boolean | undefined;
1440
+ fill?: boolean | undefined;
1441
+ copyWithin?: boolean | undefined;
1442
+ entries?: boolean | undefined;
1443
+ keys?: boolean | undefined;
1444
+ values?: boolean | undefined;
1445
+ includes?: boolean | undefined;
1446
+ flatMap?: boolean | undefined;
1447
+ flat?: boolean | undefined;
1448
+ at?: boolean | undefined;
1449
+ findLast?: boolean | undefined;
1450
+ findLastIndex?: boolean | undefined;
1451
+ toReversed?: boolean | undefined;
1452
+ toSorted?: boolean | undefined;
1453
+ toSpliced?: boolean | undefined;
1454
+ with?: boolean | undefined;
1455
+ [Symbol.iterator]?: boolean | undefined;
1456
+ readonly [Symbol.unscopables]?: boolean | undefined;
1457
+ } | undefined;
1458
+ };
1459
+ data: {
1460
+ type: import("vue").PropType<any[]>;
1461
+ default: () => never[];
1462
+ };
1463
+ width: (NumberConstructor | StringConstructor)[];
1464
+ height: (NumberConstructor | StringConstructor)[];
1465
+ maxHeight: (NumberConstructor | StringConstructor)[];
1466
+ fit: {
1467
+ type: BooleanConstructor;
1468
+ default: boolean;
1469
+ };
1470
+ stripe: BooleanConstructor;
1471
+ rowKey: import("vue").PropType<import("element-plus").TableProps<any>["rowKey"]>;
1472
+ showHeader: {
1473
+ type: BooleanConstructor;
1474
+ default: boolean;
1475
+ };
1476
+ showSummary: BooleanConstructor;
1477
+ sumText: StringConstructor;
1478
+ summaryMethod: import("vue").PropType<import("element-plus").TableProps<any>["summaryMethod"]>;
1479
+ rowClassName: import("vue").PropType<import("element-plus").TableProps<any>["rowClassName"]>;
1480
+ rowStyle: import("vue").PropType<import("element-plus").TableProps<any>["rowStyle"]>;
1481
+ cellClassName: import("vue").PropType<import("element-plus").TableProps<any>["cellClassName"]>;
1482
+ cellStyle: import("vue").PropType<import("element-plus").TableProps<any>["cellStyle"]>;
1483
+ headerRowClassName: import("vue").PropType<import("element-plus").TableProps<any>["headerRowClassName"]>;
1484
+ headerRowStyle: import("vue").PropType<import("element-plus").TableProps<any>["headerRowStyle"]>;
1485
+ headerCellClassName: import("vue").PropType<import("element-plus").TableProps<any>["headerCellClassName"]>;
1486
+ highlightCurrentRow: BooleanConstructor;
1487
+ currentRowKey: (NumberConstructor | StringConstructor)[];
1488
+ emptyText: StringConstructor;
1489
+ expandRowKeys: import("vue").PropType<import("element-plus").TableProps<any>["expandRowKeys"]>;
1490
+ defaultExpandAll: BooleanConstructor;
1491
+ defaultSort: import("vue").PropType<import("element-plus").TableProps<any>["defaultSort"]>;
1492
+ tooltipEffect: StringConstructor;
1493
+ tooltipOptions: import("vue").PropType<import("element-plus").TableProps<any>["tooltipOptions"]>;
1494
+ spanMethod: import("vue").PropType<import("element-plus").TableProps<any>["spanMethod"]>;
1495
+ selectOnIndeterminate: {
1496
+ type: BooleanConstructor;
1497
+ default: boolean;
1498
+ };
1499
+ indent: {
1500
+ type: NumberConstructor;
1501
+ default: number;
1502
+ };
1503
+ treeProps: {
1504
+ type: import("vue").PropType<import("element-plus").TableProps<any>["treeProps"]>;
1505
+ default: () => {
1506
+ hasChildren: string;
1507
+ children: string;
1508
+ checkStrictly: boolean;
1509
+ };
1510
+ };
1511
+ lazy: BooleanConstructor;
1512
+ load: import("vue").PropType<import("element-plus").TableProps<any>["load"]>;
1513
+ style: {
1514
+ type: import("vue").PropType<import("element-plus").TableProps<any>["style"]>;
1515
+ default: () => {};
1516
+ };
1517
+ className: {
1518
+ type: StringConstructor;
1519
+ default: string;
1520
+ };
1521
+ tableLayout: {
1522
+ type: import("vue").PropType<"fixed" | "auto">;
1523
+ default: string;
1524
+ };
1525
+ scrollbarAlwaysOn: BooleanConstructor;
1526
+ flexible: BooleanConstructor;
1527
+ showOverflowTooltip: import("vue").PropType<import("element-plus").TableProps<any>["showOverflowTooltip"]>;
1528
+ tooltipFormatter: import("vue").PropType<import("element-plus").TableProps<any>["tooltipFormatter"]>;
1529
+ appendFilterPanelTo: StringConstructor;
1530
+ scrollbarTabindex: {
1531
+ type: (NumberConstructor | StringConstructor)[];
1532
+ default: undefined;
1533
+ };
1534
+ allowDragLastColumn: {
1535
+ type: BooleanConstructor;
1536
+ default: boolean;
1537
+ };
1538
+ preserveExpandedContent: BooleanConstructor;
1539
+ nativeScrollbar: BooleanConstructor;
1540
+ }>> & Readonly<{
1541
+ "onCurrent-change"?: ((...args: any[]) => any) | undefined;
1542
+ onSelect?: ((...args: any[]) => any) | undefined;
1543
+ onScroll?: ((...args: any[]) => any) | undefined;
1544
+ "onSelect-all"?: ((...args: any[]) => any) | undefined;
1545
+ "onExpand-change"?: ((...args: any[]) => any) | undefined;
1546
+ "onHeader-click"?: ((...args: any[]) => any) | undefined;
1547
+ "onHeader-contextmenu"?: ((...args: any[]) => any) | undefined;
1548
+ "onHeader-dragend"?: ((...args: any[]) => any) | undefined;
1549
+ "onSelection-change"?: ((...args: any[]) => any) | undefined;
1550
+ "onSort-change"?: ((...args: any[]) => any) | undefined;
1551
+ "onFilter-change"?: ((...args: any[]) => any) | undefined;
1552
+ "onCell-mouse-enter"?: ((...args: any[]) => any) | undefined;
1553
+ "onCell-mouse-leave"?: ((...args: any[]) => any) | undefined;
1554
+ "onCell-contextmenu"?: ((...args: any[]) => any) | undefined;
1555
+ "onCell-click"?: ((...args: any[]) => any) | undefined;
1556
+ "onCell-dblclick"?: ((...args: any[]) => any) | undefined;
1557
+ "onRow-click"?: ((...args: any[]) => any) | undefined;
1558
+ "onRow-contextmenu"?: ((...args: any[]) => any) | undefined;
1559
+ "onRow-dblclick"?: ((...args: any[]) => any) | undefined;
1560
+ }>, {
1561
+ style: import("vue").StyleValue;
1562
+ headerCellStyle: import("element-plus").CellStyle<any> | undefined;
1563
+ disabled: boolean;
1564
+ className: string;
1565
+ size: import("element-plus/es/utils").EpPropMergeType<StringConstructor, "" | "small" | "default" | "large", never>;
1566
+ columns: Partial<import("element-plus").TableColumnCtx & {
1567
+ [key: string]: any;
1568
+ required: boolean | (() => boolean);
1569
+ cellRequired: (scope: import("./table").TableScope) => boolean;
1570
+ headerRender: import("element-plus").TableColumnCtx["renderHeader"];
1571
+ disabled: boolean | ((scope: import("./table").TableScope) => boolean);
1572
+ props: Record<string, any>;
1573
+ filter: boolean;
1574
+ } & {} & {
1575
+ show?: (boolean | ((T: unknown) => boolean)) | undefined;
1576
+ hide?: (boolean | ((T: unknown) => boolean)) | undefined;
1577
+ }>[];
1578
+ showSelectionCol: boolean;
1579
+ showIndexCol: boolean;
1580
+ align: "right" | "left" | "center";
1581
+ reserveSelection: boolean;
1582
+ paginationProps: Partial<{
1583
+ readonly small: boolean;
1584
+ readonly disabled: boolean;
1585
+ readonly teleported: import("element-plus/es/utils").EpPropMergeType<BooleanConstructor, unknown, unknown>;
1586
+ readonly popperClass: string;
1587
+ readonly pagerCount: number;
1588
+ readonly layout: string;
1589
+ readonly pageSizes: number[];
1590
+ readonly prevText: string;
1591
+ readonly nextText: string;
1592
+ readonly background: boolean;
1593
+ readonly hideOnSinglePage: boolean;
1594
+ } & {
1595
+ readonly popperStyle?: import("element-plus/es/utils").EpPropMergeType<(new (...args: any[]) => string | import("vue").CSSProperties) | (() => string | import("vue").CSSProperties) | ((new (...args: any[]) => string | import("vue").CSSProperties) | (() => string | import("vue").CSSProperties))[], unknown, unknown> | undefined;
1596
+ readonly pageSize?: number | undefined;
1597
+ readonly defaultPageSize?: number | undefined;
1598
+ readonly total?: number | undefined;
1599
+ readonly pageCount?: number | undefined;
1600
+ readonly currentPage?: number | undefined;
1601
+ readonly defaultCurrentPage?: number | undefined;
1602
+ readonly prevIcon?: import("element-plus/es/utils").EpPropMergeType<(new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component) | ((new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component))[], unknown, unknown> | undefined;
1603
+ readonly nextIcon?: import("element-plus/es/utils").EpPropMergeType<(new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component) | ((new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component))[], unknown, unknown> | undefined;
1604
+ readonly size?: import("element-plus/es/utils").EpPropMergeType<StringConstructor, "" | "small" | "default" | "large", never> | undefined;
1605
+ readonly appendSizeTo?: string | undefined;
1606
+ } & import("packages/utils/type").WithOnPrefixAndCamelCase<{
1607
+ 'update:current-page': (val: number) => boolean;
1608
+ 'update:page-size': (val: number) => boolean;
1609
+ 'size-change': (val: number) => boolean;
1610
+ change: (currentPage: number, pageSize: number) => boolean;
1611
+ 'current-change': (val: number) => boolean;
1612
+ 'prev-click': (val: number) => boolean;
1613
+ 'next-click': (val: number) => boolean;
1614
+ }>>;
1615
+ showPagination: boolean;
1616
+ isFrontPage: boolean;
1617
+ actionButtons: Partial<{
1618
+ readonly link: boolean;
1619
+ readonly type: import("element-plus/es/utils").EpPropMergeType<StringConstructor, "" | "default" | "text" | "primary" | "success" | "warning" | "info" | "danger", unknown>;
1620
+ readonly disabled: boolean;
1621
+ readonly dark: boolean;
1622
+ readonly nativeType: import("element-plus/es/utils").EpPropMergeType<StringConstructor, "button" | "reset" | "submit", unknown>;
1623
+ readonly loading: boolean;
1624
+ readonly bg: boolean;
1625
+ readonly autofocus: boolean;
1626
+ readonly circle: boolean;
1627
+ readonly tag: import("element-plus/es/utils").EpPropMergeType<(new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component) | ((new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component))[], unknown, unknown>;
1628
+ } & {
1629
+ readonly size?: import("element-plus/es/utils").EpPropMergeType<StringConstructor, "" | "small" | "default" | "large", never> | undefined;
1630
+ readonly icon?: import("element-plus/es/utils").EpPropMergeType<(new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component) | ((new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component))[], unknown, unknown> | undefined;
1631
+ readonly loadingIcon?: import("element-plus/es/utils").EpPropMergeType<(new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component) | ((new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component))[], unknown, unknown> | undefined;
1632
+ readonly plain?: import("element-plus/es/utils").EpPropMergeType<BooleanConstructor, unknown, unknown> | undefined;
1633
+ readonly text?: import("element-plus/es/utils").EpPropMergeType<BooleanConstructor, unknown, unknown> | undefined;
1634
+ readonly round?: import("element-plus/es/utils").EpPropMergeType<BooleanConstructor, unknown, unknown> | undefined;
1635
+ readonly color?: string | undefined;
1636
+ readonly autoInsertSpace?: import("element-plus/es/utils").EpPropMergeType<BooleanConstructor, unknown, unknown> | undefined;
1637
+ } & {
1638
+ name: string;
1639
+ prop: string;
1640
+ permission: string;
1641
+ onClick: (e: MouseEvent | import("./table").TableScope) => void;
1642
+ scopedSlots: Record<string, () => import("vue").VNode>;
1643
+ confirm: boolean;
1644
+ confirmText: string;
1645
+ } & {} & {
1646
+ show?: (boolean | ((T: unknown) => boolean)) | undefined;
1647
+ hide?: (boolean | ((T: unknown) => boolean)) | undefined;
1648
+ }>[];
1649
+ linkProps: Partial<{
1650
+ readonly link: boolean;
1651
+ readonly type: import("element-plus/es/utils").EpPropMergeType<StringConstructor, "" | "default" | "text" | "primary" | "success" | "warning" | "info" | "danger", unknown>;
1652
+ readonly disabled: boolean;
1653
+ readonly dark: boolean;
1654
+ readonly nativeType: import("element-plus/es/utils").EpPropMergeType<StringConstructor, "button" | "reset" | "submit", unknown>;
1655
+ readonly loading: boolean;
1656
+ readonly bg: boolean;
1657
+ readonly autofocus: boolean;
1658
+ readonly circle: boolean;
1659
+ readonly tag: import("element-plus/es/utils").EpPropMergeType<(new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component) | ((new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component))[], unknown, unknown>;
1660
+ } & {
1661
+ readonly size?: import("element-plus/es/utils").EpPropMergeType<StringConstructor, "" | "small" | "default" | "large", never> | undefined;
1662
+ readonly icon?: import("element-plus/es/utils").EpPropMergeType<(new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component) | ((new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component))[], unknown, unknown> | undefined;
1663
+ readonly loadingIcon?: import("element-plus/es/utils").EpPropMergeType<(new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component) | ((new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component))[], unknown, unknown> | undefined;
1664
+ readonly plain?: import("element-plus/es/utils").EpPropMergeType<BooleanConstructor, unknown, unknown> | undefined;
1665
+ readonly text?: import("element-plus/es/utils").EpPropMergeType<BooleanConstructor, unknown, unknown> | undefined;
1666
+ readonly round?: import("element-plus/es/utils").EpPropMergeType<BooleanConstructor, unknown, unknown> | undefined;
1667
+ readonly color?: string | undefined;
1668
+ readonly autoInsertSpace?: import("element-plus/es/utils").EpPropMergeType<BooleanConstructor, unknown, unknown> | undefined;
1669
+ } & {
1670
+ name: string;
1671
+ prop: string;
1672
+ permission: string;
1673
+ onClick: (e: MouseEvent | import("./table").TableScope) => void;
1674
+ scopedSlots: Record<string, () => import("vue").VNode>;
1675
+ confirm: boolean;
1676
+ confirmText: string;
1677
+ } & {} & {
1678
+ show?: (boolean | ((T: unknown) => boolean)) | undefined;
1679
+ hide?: (boolean | ((T: unknown) => boolean)) | undefined;
1680
+ }>[];
1681
+ border: boolean;
1682
+ data: any[];
1683
+ fit: boolean;
1684
+ stripe: boolean;
1685
+ showHeader: boolean;
1686
+ showSummary: boolean;
1687
+ highlightCurrentRow: boolean;
1688
+ defaultExpandAll: boolean;
1689
+ selectOnIndeterminate: boolean;
1690
+ indent: number;
1691
+ treeProps: import("element-plus/es/components/table/src/table/defaults").TreeProps | undefined;
1692
+ lazy: boolean;
1693
+ tableLayout: "fixed" | "auto";
1694
+ scrollbarAlwaysOn: boolean;
1695
+ flexible: boolean;
1696
+ scrollbarTabindex: string | number;
1697
+ allowDragLastColumn: boolean;
1698
+ preserveExpandedContent: boolean;
1699
+ nativeScrollbar: boolean;
1700
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
1701
+ declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
1702
+ declare const _default: typeof __VLS_export;
1703
+ export default _default;
1704
+ type __VLS_WithSlots<T, S> = T & {
1705
+ new (): {
1706
+ $slots: S;
1707
+ };
1708
+ };