form-imagining 0.0.2

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 (60) hide show
  1. package/README.md +12 -0
  2. package/dist/components/generate/GenerateForm.vue.d.ts +2 -0
  3. package/dist/components/index.d.ts +12 -0
  4. package/dist/components/model/baseModel.d.ts +8 -0
  5. package/dist/components/model/dataSourceModel.d.ts +19 -0
  6. package/dist/components/model/gridModel.d.ts +55 -0
  7. package/dist/components/model/inputModel.d.ts +14 -0
  8. package/dist/components/model/reportModel.d.ts +43 -0
  9. package/dist/components/model/scriptModel.d.ts +6 -0
  10. package/dist/components/model/sqlModel.d.ts +7 -0
  11. package/dist/components/model/tableModel.d.ts +16 -0
  12. package/dist/components/model/textModel.d.ts +14 -0
  13. package/dist/components/monaco/monacoEditorType.d.ts +56 -0
  14. package/dist/components/registerGlobComp.d.ts +3 -0
  15. package/dist/components/wonderform/HelloWord.vue.d.ts +2 -0
  16. package/dist/components/wonderform/config/index.vue.d.ts +14 -0
  17. package/dist/components/wonderform/config/modules/Col.vue.d.ts +14 -0
  18. package/dist/components/wonderform/config/modules/DataSource.vue.d.ts +2 -0
  19. package/dist/components/wonderform/config/modules/Form.vue.d.ts +2 -0
  20. package/dist/components/wonderform/config/modules/Grid.vue.d.ts +14 -0
  21. package/dist/components/wonderform/config/modules/Properties.vue.d.ts +14 -0
  22. package/dist/components/wonderform/config/modules/Table.vue.d.ts +14 -0
  23. package/dist/components/wonderform/config/modules/TypeScript.vue.d.ts +2 -0
  24. package/dist/components/wonderform/design/index.vue.d.ts +6 -0
  25. package/dist/components/wonderform/design/modules/FormGrid.vue.d.ts +38 -0
  26. package/dist/components/wonderform/design/modules/FormInput.vue.d.ts +26 -0
  27. package/dist/components/wonderform/design/modules/FormReport.vue.d.ts +32 -0
  28. package/dist/components/wonderform/design/modules/FormTable.vue.d.ts +32 -0
  29. package/dist/components/wonderform/dsource/index.vue.d.ts +14 -0
  30. package/dist/components/wonderform/dsource/modules/SqlModule.vue.d.ts +40 -0
  31. package/dist/components/wonderform/header/Header.vue.d.ts +2 -0
  32. package/dist/components/wonderform/header/modules/Code.vue.d.ts +23 -0
  33. package/dist/components/wonderform/header/modules/events.d.ts +1 -0
  34. package/dist/components/wonderform/index.vue.d.ts +2 -0
  35. package/dist/components/wonderform/tool/index.vue.d.ts +2 -0
  36. package/dist/enums/httpEnum.d.ts +37 -0
  37. package/dist/form-imagining.js +16342 -0
  38. package/dist/form-imagining.umd.cjs +193 -0
  39. package/dist/main.d.ts +2 -0
  40. package/dist/mock/dict.d.ts +8 -0
  41. package/dist/package.json +12 -0
  42. package/dist/router/guard/index.d.ts +2 -0
  43. package/dist/router/guard/permissionGuard.d.ts +2 -0
  44. package/dist/router/index.d.ts +3 -0
  45. package/dist/router/routes/basicRoutes.d.ts +8 -0
  46. package/dist/stores/index.d.ts +4 -0
  47. package/dist/stores/modules/data.d.ts +7177 -0
  48. package/dist/stores/modules/form.d.ts +2060 -0
  49. package/dist/style.css +1 -0
  50. package/dist/utils/form/commonUtils.d.ts +8 -0
  51. package/dist/utils/form/config.d.ts +107 -0
  52. package/dist/utils/form/generatecode.d.ts +23 -0
  53. package/dist/utils/form/validateUtil.d.ts +13 -0
  54. package/dist/utils/form/wonder1.0.1.d.ts +29 -0
  55. package/dist/utils/http/axios/axios.d.ts +48 -0
  56. package/dist/utils/http/axios/axiosModel.d.ts +8 -0
  57. package/dist/utils/http/axios/index.d.ts +2 -0
  58. package/dist/utils/utils.d.ts +1 -0
  59. package/dist/vite.svg +1 -0
  60. package/package.json +62 -0
@@ -0,0 +1,2060 @@
1
+ import { dataSourceProps } from '../../components/model/dataSourceModel';
2
+ import { scriptProps } from '../../components/model/scriptModel';
3
+ interface formProps {
4
+ list: Array<any>;
5
+ config: {};
6
+ formData: {
7
+ list: Array<any>;
8
+ config: {
9
+ layout: string;
10
+ baseScript: string;
11
+ dataSource: Array<dataSourceProps>;
12
+ eventScript: Array<scriptProps>;
13
+ };
14
+ };
15
+ }
16
+ export declare const formModel: {
17
+ list: never[];
18
+ config: {};
19
+ formData: {
20
+ list: never[];
21
+ config: {
22
+ layout: string;
23
+ baseScript: string;
24
+ dataSource: never[];
25
+ eventScript: {
26
+ key: string;
27
+ name: string;
28
+ func: string;
29
+ param: string;
30
+ }[];
31
+ };
32
+ };
33
+ };
34
+ export declare const useFormStore: import("pinia").StoreDefinition<"form", formProps, {
35
+ getFormDesignConfig(state: {
36
+ list: Array<any>;
37
+ config: {};
38
+ formData: {
39
+ list: Array<any>;
40
+ config: {
41
+ layout: string;
42
+ baseScript: string;
43
+ dataSource: {
44
+ key: {
45
+ [x: number]: string;
46
+ toString: () => string;
47
+ charAt: (pos: number) => string;
48
+ charCodeAt: (index: number) => number;
49
+ concat: (...strings: string[]) => string;
50
+ indexOf: (searchString: string, position?: number | undefined) => number;
51
+ lastIndexOf: (searchString: string, position?: number | undefined) => number;
52
+ localeCompare: {
53
+ (that: string): number;
54
+ (that: string, locales?: string | string[] | undefined, options?: Intl.CollatorOptions | undefined): number;
55
+ };
56
+ match: {
57
+ (regexp: string | RegExp): RegExpMatchArray | null;
58
+ (matcher: {
59
+ [Symbol.match](string: string): RegExpMatchArray | null;
60
+ }): RegExpMatchArray | null;
61
+ };
62
+ replace: {
63
+ (searchValue: string | RegExp, replaceValue: string): string;
64
+ (searchValue: string | RegExp, replacer: (substring: string, ...args: any[]) => string): string;
65
+ (searchValue: {
66
+ [Symbol.replace](string: string, replaceValue: string): string;
67
+ }, replaceValue: string): string;
68
+ (searchValue: {
69
+ [Symbol.replace](string: string, replacer: (substring: string, ...args: any[]) => string): string;
70
+ }, replacer: (substring: string, ...args: any[]) => string): string;
71
+ };
72
+ search: {
73
+ (regexp: string | RegExp): number;
74
+ (searcher: {
75
+ [Symbol.search](string: string): number;
76
+ }): number;
77
+ };
78
+ slice: (start?: number | undefined, end?: number | undefined) => string;
79
+ split: {
80
+ (separator: string | RegExp, limit?: number | undefined): string[];
81
+ (splitter: {
82
+ [Symbol.split](string: string, limit?: number | undefined): string[];
83
+ }, limit?: number | undefined): string[];
84
+ };
85
+ substring: (start: number, end?: number | undefined) => string;
86
+ toLowerCase: () => string;
87
+ toLocaleLowerCase: (locales?: string | string[] | undefined) => string;
88
+ toUpperCase: () => string;
89
+ toLocaleUpperCase: (locales?: string | string[] | undefined) => string;
90
+ trim: () => string;
91
+ readonly length: number;
92
+ substr: (from: number, length?: number | undefined) => string;
93
+ valueOf: () => string;
94
+ codePointAt: (pos: number) => number | undefined;
95
+ includes: (searchString: string, position?: number | undefined) => boolean;
96
+ endsWith: (searchString: string, endPosition?: number | undefined) => boolean;
97
+ normalize: {
98
+ (form: "NFC" | "NFD" | "NFKC" | "NFKD"): string;
99
+ (form?: string | undefined): string;
100
+ };
101
+ repeat: (count: number) => string;
102
+ startsWith: (searchString: string, position?: number | undefined) => boolean;
103
+ anchor: (name: string) => string;
104
+ big: () => string;
105
+ blink: () => string;
106
+ bold: () => string;
107
+ fixed: () => string;
108
+ fontcolor: (color: string) => string;
109
+ fontsize: {
110
+ (size: number): string;
111
+ (size: string): string;
112
+ };
113
+ italics: () => string;
114
+ link: (url: string) => string;
115
+ small: () => string;
116
+ strike: () => string;
117
+ sub: () => string;
118
+ sup: () => string;
119
+ padStart: (maxLength: number, fillString?: string | undefined) => string;
120
+ padEnd: (maxLength: number, fillString?: string | undefined) => string;
121
+ trimEnd: () => string;
122
+ trimStart: () => string;
123
+ trimLeft: () => string;
124
+ trimRight: () => string;
125
+ matchAll: (regexp: RegExp) => IterableIterator<RegExpMatchArray>;
126
+ replaceAll: {
127
+ (searchValue: string | RegExp, replaceValue: string): string;
128
+ (searchValue: string | RegExp, replacer: (substring: string, ...args: any[]) => string): string;
129
+ };
130
+ at: (index: number) => string | undefined;
131
+ [Symbol.iterator]: () => IterableIterator<string>;
132
+ };
133
+ name: {
134
+ [x: number]: string;
135
+ toString: () => string;
136
+ charAt: (pos: number) => string;
137
+ charCodeAt: (index: number) => number;
138
+ concat: (...strings: string[]) => string;
139
+ indexOf: (searchString: string, position?: number | undefined) => number;
140
+ lastIndexOf: (searchString: string, position?: number | undefined) => number;
141
+ localeCompare: {
142
+ (that: string): number;
143
+ (that: string, locales?: string | string[] | undefined, options?: Intl.CollatorOptions | undefined): number;
144
+ };
145
+ match: {
146
+ (regexp: string | RegExp): RegExpMatchArray | null;
147
+ (matcher: {
148
+ [Symbol.match](string: string): RegExpMatchArray | null;
149
+ }): RegExpMatchArray | null;
150
+ };
151
+ replace: {
152
+ (searchValue: string | RegExp, replaceValue: string): string;
153
+ (searchValue: string | RegExp, replacer: (substring: string, ...args: any[]) => string): string;
154
+ (searchValue: {
155
+ [Symbol.replace](string: string, replaceValue: string): string;
156
+ }, replaceValue: string): string;
157
+ (searchValue: {
158
+ [Symbol.replace](string: string, replacer: (substring: string, ...args: any[]) => string): string;
159
+ }, replacer: (substring: string, ...args: any[]) => string): string;
160
+ };
161
+ search: {
162
+ (regexp: string | RegExp): number;
163
+ (searcher: {
164
+ [Symbol.search](string: string): number;
165
+ }): number;
166
+ };
167
+ slice: (start?: number | undefined, end?: number | undefined) => string;
168
+ split: {
169
+ (separator: string | RegExp, limit?: number | undefined): string[];
170
+ (splitter: {
171
+ [Symbol.split](string: string, limit?: number | undefined): string[];
172
+ }, limit?: number | undefined): string[];
173
+ };
174
+ substring: (start: number, end?: number | undefined) => string;
175
+ toLowerCase: () => string;
176
+ toLocaleLowerCase: (locales?: string | string[] | undefined) => string;
177
+ toUpperCase: () => string;
178
+ toLocaleUpperCase: (locales?: string | string[] | undefined) => string;
179
+ trim: () => string;
180
+ readonly length: number;
181
+ substr: (from: number, length?: number | undefined) => string;
182
+ valueOf: () => string;
183
+ codePointAt: (pos: number) => number | undefined;
184
+ includes: (searchString: string, position?: number | undefined) => boolean;
185
+ endsWith: (searchString: string, endPosition?: number | undefined) => boolean;
186
+ normalize: {
187
+ (form: "NFC" | "NFD" | "NFKC" | "NFKD"): string;
188
+ (form?: string | undefined): string;
189
+ };
190
+ repeat: (count: number) => string;
191
+ startsWith: (searchString: string, position?: number | undefined) => boolean;
192
+ anchor: (name: string) => string;
193
+ big: () => string;
194
+ blink: () => string;
195
+ bold: () => string;
196
+ fixed: () => string;
197
+ fontcolor: (color: string) => string;
198
+ fontsize: {
199
+ (size: number): string;
200
+ (size: string): string;
201
+ };
202
+ italics: () => string;
203
+ link: (url: string) => string;
204
+ small: () => string;
205
+ strike: () => string;
206
+ sub: () => string;
207
+ sup: () => string;
208
+ padStart: (maxLength: number, fillString?: string | undefined) => string;
209
+ padEnd: (maxLength: number, fillString?: string | undefined) => string;
210
+ trimEnd: () => string;
211
+ trimStart: () => string;
212
+ trimLeft: () => string;
213
+ trimRight: () => string;
214
+ matchAll: (regexp: RegExp) => IterableIterator<RegExpMatchArray>;
215
+ replaceAll: {
216
+ (searchValue: string | RegExp, replaceValue: string): string;
217
+ (searchValue: string | RegExp, replacer: (substring: string, ...args: any[]) => string): string;
218
+ };
219
+ at: (index: number) => string | undefined;
220
+ [Symbol.iterator]: () => IterableIterator<string>;
221
+ };
222
+ url: {
223
+ [x: number]: string;
224
+ toString: () => string;
225
+ charAt: (pos: number) => string;
226
+ charCodeAt: (index: number) => number;
227
+ concat: (...strings: string[]) => string;
228
+ indexOf: (searchString: string, position?: number | undefined) => number;
229
+ lastIndexOf: (searchString: string, position?: number | undefined) => number;
230
+ localeCompare: {
231
+ (that: string): number;
232
+ (that: string, locales?: string | string[] | undefined, options?: Intl.CollatorOptions | undefined): number;
233
+ };
234
+ match: {
235
+ (regexp: string | RegExp): RegExpMatchArray | null;
236
+ (matcher: {
237
+ [Symbol.match](string: string): RegExpMatchArray | null;
238
+ }): RegExpMatchArray | null;
239
+ };
240
+ replace: {
241
+ (searchValue: string | RegExp, replaceValue: string): string;
242
+ (searchValue: string | RegExp, replacer: (substring: string, ...args: any[]) => string): string;
243
+ (searchValue: {
244
+ [Symbol.replace](string: string, replaceValue: string): string;
245
+ }, replaceValue: string): string;
246
+ (searchValue: {
247
+ [Symbol.replace](string: string, replacer: (substring: string, ...args: any[]) => string): string;
248
+ }, replacer: (substring: string, ...args: any[]) => string): string;
249
+ };
250
+ search: {
251
+ (regexp: string | RegExp): number;
252
+ (searcher: {
253
+ [Symbol.search](string: string): number;
254
+ }): number;
255
+ };
256
+ slice: (start?: number | undefined, end?: number | undefined) => string;
257
+ split: {
258
+ (separator: string | RegExp, limit?: number | undefined): string[];
259
+ (splitter: {
260
+ [Symbol.split](string: string, limit?: number | undefined): string[];
261
+ }, limit?: number | undefined): string[];
262
+ };
263
+ substring: (start: number, end?: number | undefined) => string;
264
+ toLowerCase: () => string;
265
+ toLocaleLowerCase: (locales?: string | string[] | undefined) => string;
266
+ toUpperCase: () => string;
267
+ toLocaleUpperCase: (locales?: string | string[] | undefined) => string;
268
+ trim: () => string;
269
+ readonly length: number;
270
+ substr: (from: number, length?: number | undefined) => string;
271
+ valueOf: () => string;
272
+ codePointAt: (pos: number) => number | undefined;
273
+ includes: (searchString: string, position?: number | undefined) => boolean;
274
+ endsWith: (searchString: string, endPosition?: number | undefined) => boolean;
275
+ normalize: {
276
+ (form: "NFC" | "NFD" | "NFKC" | "NFKD"): string;
277
+ (form?: string | undefined): string;
278
+ };
279
+ repeat: (count: number) => string;
280
+ startsWith: (searchString: string, position?: number | undefined) => boolean;
281
+ anchor: (name: string) => string;
282
+ big: () => string;
283
+ blink: () => string;
284
+ bold: () => string;
285
+ fixed: () => string;
286
+ fontcolor: (color: string) => string;
287
+ fontsize: {
288
+ (size: number): string;
289
+ (size: string): string;
290
+ };
291
+ italics: () => string;
292
+ link: (url: string) => string;
293
+ small: () => string;
294
+ strike: () => string;
295
+ sub: () => string;
296
+ sup: () => string;
297
+ padStart: (maxLength: number, fillString?: string | undefined) => string;
298
+ padEnd: (maxLength: number, fillString?: string | undefined) => string;
299
+ trimEnd: () => string;
300
+ trimStart: () => string;
301
+ trimLeft: () => string;
302
+ trimRight: () => string;
303
+ matchAll: (regexp: RegExp) => IterableIterator<RegExpMatchArray>;
304
+ replaceAll: {
305
+ (searchValue: string | RegExp, replaceValue: string): string;
306
+ (searchValue: string | RegExp, replacer: (substring: string, ...args: any[]) => string): string;
307
+ };
308
+ at: (index: number) => string | undefined;
309
+ [Symbol.iterator]: () => IterableIterator<string>;
310
+ };
311
+ method: {
312
+ [x: number]: string;
313
+ toString: () => string;
314
+ charAt: (pos: number) => string;
315
+ charCodeAt: (index: number) => number;
316
+ concat: (...strings: string[]) => string;
317
+ indexOf: (searchString: string, position?: number | undefined) => number;
318
+ lastIndexOf: (searchString: string, position?: number | undefined) => number;
319
+ localeCompare: {
320
+ (that: string): number;
321
+ (that: string, locales?: string | string[] | undefined, options?: Intl.CollatorOptions | undefined): number;
322
+ };
323
+ match: {
324
+ (regexp: string | RegExp): RegExpMatchArray | null;
325
+ (matcher: {
326
+ [Symbol.match](string: string): RegExpMatchArray | null;
327
+ }): RegExpMatchArray | null;
328
+ };
329
+ replace: {
330
+ (searchValue: string | RegExp, replaceValue: string): string;
331
+ (searchValue: string | RegExp, replacer: (substring: string, ...args: any[]) => string): string;
332
+ (searchValue: {
333
+ [Symbol.replace](string: string, replaceValue: string): string;
334
+ }, replaceValue: string): string;
335
+ (searchValue: {
336
+ [Symbol.replace](string: string, replacer: (substring: string, ...args: any[]) => string): string;
337
+ }, replacer: (substring: string, ...args: any[]) => string): string;
338
+ };
339
+ search: {
340
+ (regexp: string | RegExp): number;
341
+ (searcher: {
342
+ [Symbol.search](string: string): number;
343
+ }): number;
344
+ };
345
+ slice: (start?: number | undefined, end?: number | undefined) => string;
346
+ split: {
347
+ (separator: string | RegExp, limit?: number | undefined): string[];
348
+ (splitter: {
349
+ [Symbol.split](string: string, limit?: number | undefined): string[];
350
+ }, limit?: number | undefined): string[];
351
+ };
352
+ substring: (start: number, end?: number | undefined) => string;
353
+ toLowerCase: () => string;
354
+ toLocaleLowerCase: (locales?: string | string[] | undefined) => string;
355
+ toUpperCase: () => string;
356
+ toLocaleUpperCase: (locales?: string | string[] | undefined) => string;
357
+ trim: () => string;
358
+ readonly length: number;
359
+ substr: (from: number, length?: number | undefined) => string;
360
+ valueOf: () => string;
361
+ codePointAt: (pos: number) => number | undefined;
362
+ includes: (searchString: string, position?: number | undefined) => boolean;
363
+ endsWith: (searchString: string, endPosition?: number | undefined) => boolean;
364
+ normalize: {
365
+ (form: "NFC" | "NFD" | "NFKC" | "NFKD"): string;
366
+ (form?: string | undefined): string;
367
+ };
368
+ repeat: (count: number) => string;
369
+ startsWith: (searchString: string, position?: number | undefined) => boolean;
370
+ anchor: (name: string) => string;
371
+ big: () => string;
372
+ blink: () => string;
373
+ bold: () => string;
374
+ fixed: () => string;
375
+ fontcolor: (color: string) => string;
376
+ fontsize: {
377
+ (size: number): string;
378
+ (size: string): string;
379
+ };
380
+ italics: () => string;
381
+ link: (url: string) => string;
382
+ small: () => string;
383
+ strike: () => string;
384
+ sub: () => string;
385
+ sup: () => string;
386
+ padStart: (maxLength: number, fillString?: string | undefined) => string;
387
+ padEnd: (maxLength: number, fillString?: string | undefined) => string;
388
+ trimEnd: () => string;
389
+ trimStart: () => string;
390
+ trimLeft: () => string;
391
+ trimRight: () => string;
392
+ matchAll: (regexp: RegExp) => IterableIterator<RegExpMatchArray>;
393
+ replaceAll: {
394
+ (searchValue: string | RegExp, replaceValue: string): string;
395
+ (searchValue: string | RegExp, replacer: (substring: string, ...args: any[]) => string): string;
396
+ };
397
+ at: (index: number) => string | undefined;
398
+ [Symbol.iterator]: () => IterableIterator<string>;
399
+ };
400
+ auto: {
401
+ valueOf: () => boolean;
402
+ };
403
+ params: {
404
+ key: {
405
+ [x: number]: string;
406
+ toString: () => string;
407
+ charAt: (pos: number) => string;
408
+ charCodeAt: (index: number) => number;
409
+ concat: (...strings: string[]) => string;
410
+ indexOf: (searchString: string, position?: number | undefined) => number;
411
+ lastIndexOf: (searchString: string, position?: number | undefined) => number;
412
+ localeCompare: {
413
+ (that: string): number;
414
+ (that: string, locales?: string | string[] | undefined, options?: Intl.CollatorOptions | undefined): number;
415
+ };
416
+ match: {
417
+ (regexp: string | RegExp): RegExpMatchArray | null;
418
+ (matcher: {
419
+ [Symbol.match](string: string): RegExpMatchArray | null;
420
+ }): RegExpMatchArray | null;
421
+ };
422
+ replace: {
423
+ (searchValue: string | RegExp, replaceValue: string): string;
424
+ (searchValue: string | RegExp, replacer: (substring: string, ...args: any[]) => string): string;
425
+ (searchValue: {
426
+ [Symbol.replace](string: string, replaceValue: string): string;
427
+ }, replaceValue: string): string;
428
+ (searchValue: {
429
+ [Symbol.replace](string: string, replacer: (substring: string, ...args: any[]) => string): string;
430
+ }, replacer: (substring: string, ...args: any[]) => string): string;
431
+ };
432
+ search: {
433
+ (regexp: string | RegExp): number;
434
+ (searcher: {
435
+ [Symbol.search](string: string): number;
436
+ }): number;
437
+ };
438
+ slice: (start?: number | undefined, end?: number | undefined) => string;
439
+ split: {
440
+ (separator: string | RegExp, limit?: number | undefined): string[];
441
+ (splitter: {
442
+ [Symbol.split](string: string, limit?: number | undefined): string[];
443
+ }, limit?: number | undefined): string[];
444
+ };
445
+ substring: (start: number, end?: number | undefined) => string;
446
+ toLowerCase: () => string;
447
+ toLocaleLowerCase: (locales?: string | string[] | undefined) => string;
448
+ toUpperCase: () => string;
449
+ toLocaleUpperCase: (locales?: string | string[] | undefined) => string;
450
+ trim: () => string;
451
+ readonly length: number;
452
+ substr: (from: number, length?: number | undefined) => string;
453
+ valueOf: () => string;
454
+ codePointAt: (pos: number) => number | undefined;
455
+ includes: (searchString: string, position?: number | undefined) => boolean;
456
+ endsWith: (searchString: string, endPosition?: number | undefined) => boolean;
457
+ normalize: {
458
+ (form: "NFC" | "NFD" | "NFKC" | "NFKD"): string;
459
+ (form?: string | undefined): string;
460
+ };
461
+ repeat: (count: number) => string;
462
+ startsWith: (searchString: string, position?: number | undefined) => boolean;
463
+ anchor: (name: string) => string;
464
+ big: () => string;
465
+ blink: () => string;
466
+ bold: () => string;
467
+ fixed: () => string;
468
+ fontcolor: (color: string) => string;
469
+ fontsize: {
470
+ (size: number): string;
471
+ (size: string): string;
472
+ };
473
+ italics: () => string;
474
+ link: (url: string) => string;
475
+ small: () => string;
476
+ strike: () => string;
477
+ sub: () => string;
478
+ sup: () => string;
479
+ padStart: (maxLength: number, fillString?: string | undefined) => string;
480
+ padEnd: (maxLength: number, fillString?: string | undefined) => string;
481
+ trimEnd: () => string;
482
+ trimStart: () => string;
483
+ trimLeft: () => string;
484
+ trimRight: () => string;
485
+ matchAll: (regexp: RegExp) => IterableIterator<RegExpMatchArray>;
486
+ replaceAll: {
487
+ (searchValue: string | RegExp, replaceValue: string): string;
488
+ (searchValue: string | RegExp, replacer: (substring: string, ...args: any[]) => string): string;
489
+ };
490
+ at: (index: number) => string | undefined;
491
+ [Symbol.iterator]: () => IterableIterator<string>;
492
+ };
493
+ value: {
494
+ [x: number]: string;
495
+ toString: () => string;
496
+ charAt: (pos: number) => string;
497
+ charCodeAt: (index: number) => number;
498
+ concat: (...strings: string[]) => string;
499
+ indexOf: (searchString: string, position?: number | undefined) => number;
500
+ lastIndexOf: (searchString: string, position?: number | undefined) => number;
501
+ localeCompare: {
502
+ (that: string): number;
503
+ (that: string, locales?: string | string[] | undefined, options?: Intl.CollatorOptions | undefined): number;
504
+ };
505
+ match: {
506
+ (regexp: string | RegExp): RegExpMatchArray | null;
507
+ (matcher: {
508
+ [Symbol.match](string: string): RegExpMatchArray | null;
509
+ }): RegExpMatchArray | null;
510
+ };
511
+ replace: {
512
+ (searchValue: string | RegExp, replaceValue: string): string;
513
+ (searchValue: string | RegExp, replacer: (substring: string, ...args: any[]) => string): string;
514
+ (searchValue: {
515
+ [Symbol.replace](string: string, replaceValue: string): string;
516
+ }, replaceValue: string): string;
517
+ (searchValue: {
518
+ [Symbol.replace](string: string, replacer: (substring: string, ...args: any[]) => string): string;
519
+ }, replacer: (substring: string, ...args: any[]) => string): string;
520
+ };
521
+ search: {
522
+ (regexp: string | RegExp): number;
523
+ (searcher: {
524
+ [Symbol.search](string: string): number;
525
+ }): number;
526
+ };
527
+ slice: (start?: number | undefined, end?: number | undefined) => string;
528
+ split: {
529
+ (separator: string | RegExp, limit?: number | undefined): string[];
530
+ (splitter: {
531
+ [Symbol.split](string: string, limit?: number | undefined): string[];
532
+ }, limit?: number | undefined): string[];
533
+ };
534
+ substring: (start: number, end?: number | undefined) => string;
535
+ toLowerCase: () => string;
536
+ toLocaleLowerCase: (locales?: string | string[] | undefined) => string;
537
+ toUpperCase: () => string;
538
+ toLocaleUpperCase: (locales?: string | string[] | undefined) => string;
539
+ trim: () => string;
540
+ readonly length: number;
541
+ substr: (from: number, length?: number | undefined) => string;
542
+ valueOf: () => string;
543
+ codePointAt: (pos: number) => number | undefined;
544
+ includes: (searchString: string, position?: number | undefined) => boolean;
545
+ endsWith: (searchString: string, endPosition?: number | undefined) => boolean;
546
+ normalize: {
547
+ (form: "NFC" | "NFD" | "NFKC" | "NFKD"): string;
548
+ (form?: string | undefined): string;
549
+ };
550
+ repeat: (count: number) => string;
551
+ startsWith: (searchString: string, position?: number | undefined) => boolean;
552
+ anchor: (name: string) => string;
553
+ big: () => string;
554
+ blink: () => string;
555
+ bold: () => string;
556
+ fixed: () => string;
557
+ fontcolor: (color: string) => string;
558
+ fontsize: {
559
+ (size: number): string;
560
+ (size: string): string;
561
+ };
562
+ italics: () => string;
563
+ link: (url: string) => string;
564
+ small: () => string;
565
+ strike: () => string;
566
+ sub: () => string;
567
+ sup: () => string;
568
+ padStart: (maxLength: number, fillString?: string | undefined) => string;
569
+ padEnd: (maxLength: number, fillString?: string | undefined) => string;
570
+ trimEnd: () => string;
571
+ trimStart: () => string;
572
+ trimLeft: () => string;
573
+ trimRight: () => string;
574
+ matchAll: (regexp: RegExp) => IterableIterator<RegExpMatchArray>;
575
+ replaceAll: {
576
+ (searchValue: string | RegExp, replaceValue: string): string;
577
+ (searchValue: string | RegExp, replacer: (substring: string, ...args: any[]) => string): string;
578
+ };
579
+ at: (index: number) => string | undefined;
580
+ [Symbol.iterator]: () => IterableIterator<string>;
581
+ };
582
+ }[];
583
+ headers: {
584
+ key: {
585
+ [x: number]: string;
586
+ toString: () => string;
587
+ charAt: (pos: number) => string;
588
+ charCodeAt: (index: number) => number;
589
+ concat: (...strings: string[]) => string;
590
+ indexOf: (searchString: string, position?: number | undefined) => number;
591
+ lastIndexOf: (searchString: string, position?: number | undefined) => number;
592
+ localeCompare: {
593
+ (that: string): number;
594
+ (that: string, locales?: string | string[] | undefined, options?: Intl.CollatorOptions | undefined): number;
595
+ };
596
+ match: {
597
+ (regexp: string | RegExp): RegExpMatchArray | null;
598
+ (matcher: {
599
+ [Symbol.match](string: string): RegExpMatchArray | null;
600
+ }): RegExpMatchArray | null;
601
+ };
602
+ replace: {
603
+ (searchValue: string | RegExp, replaceValue: string): string;
604
+ (searchValue: string | RegExp, replacer: (substring: string, ...args: any[]) => string): string;
605
+ (searchValue: {
606
+ [Symbol.replace](string: string, replaceValue: string): string;
607
+ }, replaceValue: string): string;
608
+ (searchValue: {
609
+ [Symbol.replace](string: string, replacer: (substring: string, ...args: any[]) => string): string;
610
+ }, replacer: (substring: string, ...args: any[]) => string): string;
611
+ };
612
+ search: {
613
+ (regexp: string | RegExp): number;
614
+ (searcher: {
615
+ [Symbol.search](string: string): number;
616
+ }): number;
617
+ };
618
+ slice: (start?: number | undefined, end?: number | undefined) => string;
619
+ split: {
620
+ (separator: string | RegExp, limit?: number | undefined): string[];
621
+ (splitter: {
622
+ [Symbol.split](string: string, limit?: number | undefined): string[];
623
+ }, limit?: number | undefined): string[];
624
+ };
625
+ substring: (start: number, end?: number | undefined) => string;
626
+ toLowerCase: () => string;
627
+ toLocaleLowerCase: (locales?: string | string[] | undefined) => string;
628
+ toUpperCase: () => string;
629
+ toLocaleUpperCase: (locales?: string | string[] | undefined) => string;
630
+ trim: () => string;
631
+ readonly length: number;
632
+ substr: (from: number, length?: number | undefined) => string;
633
+ valueOf: () => string;
634
+ codePointAt: (pos: number) => number | undefined;
635
+ includes: (searchString: string, position?: number | undefined) => boolean;
636
+ endsWith: (searchString: string, endPosition?: number | undefined) => boolean;
637
+ normalize: {
638
+ (form: "NFC" | "NFD" | "NFKC" | "NFKD"): string;
639
+ (form?: string | undefined): string;
640
+ };
641
+ repeat: (count: number) => string;
642
+ startsWith: (searchString: string, position?: number | undefined) => boolean;
643
+ anchor: (name: string) => string;
644
+ big: () => string;
645
+ blink: () => string;
646
+ bold: () => string;
647
+ fixed: () => string;
648
+ fontcolor: (color: string) => string;
649
+ fontsize: {
650
+ (size: number): string;
651
+ (size: string): string;
652
+ };
653
+ italics: () => string;
654
+ link: (url: string) => string;
655
+ small: () => string;
656
+ strike: () => string;
657
+ sub: () => string;
658
+ sup: () => string;
659
+ padStart: (maxLength: number, fillString?: string | undefined) => string;
660
+ padEnd: (maxLength: number, fillString?: string | undefined) => string;
661
+ trimEnd: () => string;
662
+ trimStart: () => string;
663
+ trimLeft: () => string;
664
+ trimRight: () => string;
665
+ matchAll: (regexp: RegExp) => IterableIterator<RegExpMatchArray>;
666
+ replaceAll: {
667
+ (searchValue: string | RegExp, replaceValue: string): string;
668
+ (searchValue: string | RegExp, replacer: (substring: string, ...args: any[]) => string): string;
669
+ };
670
+ at: (index: number) => string | undefined;
671
+ [Symbol.iterator]: () => IterableIterator<string>;
672
+ };
673
+ value: {
674
+ [x: number]: string;
675
+ toString: () => string;
676
+ charAt: (pos: number) => string;
677
+ charCodeAt: (index: number) => number;
678
+ concat: (...strings: string[]) => string;
679
+ indexOf: (searchString: string, position?: number | undefined) => number;
680
+ lastIndexOf: (searchString: string, position?: number | undefined) => number;
681
+ localeCompare: {
682
+ (that: string): number;
683
+ (that: string, locales?: string | string[] | undefined, options?: Intl.CollatorOptions | undefined): number;
684
+ };
685
+ match: {
686
+ (regexp: string | RegExp): RegExpMatchArray | null;
687
+ (matcher: {
688
+ [Symbol.match](string: string): RegExpMatchArray | null;
689
+ }): RegExpMatchArray | null;
690
+ };
691
+ replace: {
692
+ (searchValue: string | RegExp, replaceValue: string): string;
693
+ (searchValue: string | RegExp, replacer: (substring: string, ...args: any[]) => string): string;
694
+ (searchValue: {
695
+ [Symbol.replace](string: string, replaceValue: string): string;
696
+ }, replaceValue: string): string;
697
+ (searchValue: {
698
+ [Symbol.replace](string: string, replacer: (substring: string, ...args: any[]) => string): string;
699
+ }, replacer: (substring: string, ...args: any[]) => string): string;
700
+ };
701
+ search: {
702
+ (regexp: string | RegExp): number;
703
+ (searcher: {
704
+ [Symbol.search](string: string): number;
705
+ }): number;
706
+ };
707
+ slice: (start?: number | undefined, end?: number | undefined) => string;
708
+ split: {
709
+ (separator: string | RegExp, limit?: number | undefined): string[];
710
+ (splitter: {
711
+ [Symbol.split](string: string, limit?: number | undefined): string[];
712
+ }, limit?: number | undefined): string[];
713
+ };
714
+ substring: (start: number, end?: number | undefined) => string;
715
+ toLowerCase: () => string;
716
+ toLocaleLowerCase: (locales?: string | string[] | undefined) => string;
717
+ toUpperCase: () => string;
718
+ toLocaleUpperCase: (locales?: string | string[] | undefined) => string;
719
+ trim: () => string;
720
+ readonly length: number;
721
+ substr: (from: number, length?: number | undefined) => string;
722
+ valueOf: () => string;
723
+ codePointAt: (pos: number) => number | undefined;
724
+ includes: (searchString: string, position?: number | undefined) => boolean;
725
+ endsWith: (searchString: string, endPosition?: number | undefined) => boolean;
726
+ normalize: {
727
+ (form: "NFC" | "NFD" | "NFKC" | "NFKD"): string;
728
+ (form?: string | undefined): string;
729
+ };
730
+ repeat: (count: number) => string;
731
+ startsWith: (searchString: string, position?: number | undefined) => boolean;
732
+ anchor: (name: string) => string;
733
+ big: () => string;
734
+ blink: () => string;
735
+ bold: () => string;
736
+ fixed: () => string;
737
+ fontcolor: (color: string) => string;
738
+ fontsize: {
739
+ (size: number): string;
740
+ (size: string): string;
741
+ };
742
+ italics: () => string;
743
+ link: (url: string) => string;
744
+ small: () => string;
745
+ strike: () => string;
746
+ sub: () => string;
747
+ sup: () => string;
748
+ padStart: (maxLength: number, fillString?: string | undefined) => string;
749
+ padEnd: (maxLength: number, fillString?: string | undefined) => string;
750
+ trimEnd: () => string;
751
+ trimStart: () => string;
752
+ trimLeft: () => string;
753
+ trimRight: () => string;
754
+ matchAll: (regexp: RegExp) => IterableIterator<RegExpMatchArray>;
755
+ replaceAll: {
756
+ (searchValue: string | RegExp, replaceValue: string): string;
757
+ (searchValue: string | RegExp, replacer: (substring: string, ...args: any[]) => string): string;
758
+ };
759
+ at: (index: number) => string | undefined;
760
+ [Symbol.iterator]: () => IterableIterator<string>;
761
+ };
762
+ }[];
763
+ responseFunc: {
764
+ [x: number]: string;
765
+ toString: () => string;
766
+ charAt: (pos: number) => string;
767
+ charCodeAt: (index: number) => number;
768
+ concat: (...strings: string[]) => string;
769
+ indexOf: (searchString: string, position?: number | undefined) => number;
770
+ lastIndexOf: (searchString: string, position?: number | undefined) => number;
771
+ localeCompare: {
772
+ (that: string): number;
773
+ (that: string, locales?: string | string[] | undefined, options?: Intl.CollatorOptions | undefined): number;
774
+ };
775
+ match: {
776
+ (regexp: string | RegExp): RegExpMatchArray | null;
777
+ (matcher: {
778
+ [Symbol.match](string: string): RegExpMatchArray | null;
779
+ }): RegExpMatchArray | null;
780
+ };
781
+ replace: {
782
+ (searchValue: string | RegExp, replaceValue: string): string;
783
+ (searchValue: string | RegExp, replacer: (substring: string, ...args: any[]) => string): string;
784
+ (searchValue: {
785
+ [Symbol.replace](string: string, replaceValue: string): string;
786
+ }, replaceValue: string): string;
787
+ (searchValue: {
788
+ [Symbol.replace](string: string, replacer: (substring: string, ...args: any[]) => string): string;
789
+ }, replacer: (substring: string, ...args: any[]) => string): string;
790
+ };
791
+ search: {
792
+ (regexp: string | RegExp): number;
793
+ (searcher: {
794
+ [Symbol.search](string: string): number;
795
+ }): number;
796
+ };
797
+ slice: (start?: number | undefined, end?: number | undefined) => string;
798
+ split: {
799
+ (separator: string | RegExp, limit?: number | undefined): string[];
800
+ (splitter: {
801
+ [Symbol.split](string: string, limit?: number | undefined): string[];
802
+ }, limit?: number | undefined): string[];
803
+ };
804
+ substring: (start: number, end?: number | undefined) => string;
805
+ toLowerCase: () => string;
806
+ toLocaleLowerCase: (locales?: string | string[] | undefined) => string;
807
+ toUpperCase: () => string;
808
+ toLocaleUpperCase: (locales?: string | string[] | undefined) => string;
809
+ trim: () => string;
810
+ readonly length: number;
811
+ substr: (from: number, length?: number | undefined) => string;
812
+ valueOf: () => string;
813
+ codePointAt: (pos: number) => number | undefined;
814
+ includes: (searchString: string, position?: number | undefined) => boolean;
815
+ endsWith: (searchString: string, endPosition?: number | undefined) => boolean;
816
+ normalize: {
817
+ (form: "NFC" | "NFD" | "NFKC" | "NFKD"): string;
818
+ (form?: string | undefined): string;
819
+ };
820
+ repeat: (count: number) => string;
821
+ startsWith: (searchString: string, position?: number | undefined) => boolean;
822
+ anchor: (name: string) => string;
823
+ big: () => string;
824
+ blink: () => string;
825
+ bold: () => string;
826
+ fixed: () => string;
827
+ fontcolor: (color: string) => string;
828
+ fontsize: {
829
+ (size: number): string;
830
+ (size: string): string;
831
+ };
832
+ italics: () => string;
833
+ link: (url: string) => string;
834
+ small: () => string;
835
+ strike: () => string;
836
+ sub: () => string;
837
+ sup: () => string;
838
+ padStart: (maxLength: number, fillString?: string | undefined) => string;
839
+ padEnd: (maxLength: number, fillString?: string | undefined) => string;
840
+ trimEnd: () => string;
841
+ trimStart: () => string;
842
+ trimLeft: () => string;
843
+ trimRight: () => string;
844
+ matchAll: (regexp: RegExp) => IterableIterator<RegExpMatchArray>;
845
+ replaceAll: {
846
+ (searchValue: string | RegExp, replaceValue: string): string;
847
+ (searchValue: string | RegExp, replacer: (substring: string, ...args: any[]) => string): string;
848
+ };
849
+ at: (index: number) => string | undefined;
850
+ [Symbol.iterator]: () => IterableIterator<string>;
851
+ };
852
+ requestFunc: {
853
+ [x: number]: string;
854
+ toString: () => string;
855
+ charAt: (pos: number) => string;
856
+ charCodeAt: (index: number) => number;
857
+ concat: (...strings: string[]) => string;
858
+ indexOf: (searchString: string, position?: number | undefined) => number;
859
+ lastIndexOf: (searchString: string, position?: number | undefined) => number;
860
+ localeCompare: {
861
+ (that: string): number;
862
+ (that: string, locales?: string | string[] | undefined, options?: Intl.CollatorOptions | undefined): number;
863
+ };
864
+ match: {
865
+ (regexp: string | RegExp): RegExpMatchArray | null;
866
+ (matcher: {
867
+ [Symbol.match](string: string): RegExpMatchArray | null;
868
+ }): RegExpMatchArray | null;
869
+ };
870
+ replace: {
871
+ (searchValue: string | RegExp, replaceValue: string): string;
872
+ (searchValue: string | RegExp, replacer: (substring: string, ...args: any[]) => string): string;
873
+ (searchValue: {
874
+ [Symbol.replace](string: string, replaceValue: string): string;
875
+ }, replaceValue: string): string;
876
+ (searchValue: {
877
+ [Symbol.replace](string: string, replacer: (substring: string, ...args: any[]) => string): string;
878
+ }, replacer: (substring: string, ...args: any[]) => string): string;
879
+ };
880
+ search: {
881
+ (regexp: string | RegExp): number;
882
+ (searcher: {
883
+ [Symbol.search](string: string): number;
884
+ }): number;
885
+ };
886
+ slice: (start?: number | undefined, end?: number | undefined) => string;
887
+ split: {
888
+ (separator: string | RegExp, limit?: number | undefined): string[];
889
+ (splitter: {
890
+ [Symbol.split](string: string, limit?: number | undefined): string[];
891
+ }, limit?: number | undefined): string[];
892
+ };
893
+ substring: (start: number, end?: number | undefined) => string;
894
+ toLowerCase: () => string;
895
+ toLocaleLowerCase: (locales?: string | string[] | undefined) => string;
896
+ toUpperCase: () => string;
897
+ toLocaleUpperCase: (locales?: string | string[] | undefined) => string;
898
+ trim: () => string;
899
+ readonly length: number;
900
+ substr: (from: number, length?: number | undefined) => string;
901
+ valueOf: () => string;
902
+ codePointAt: (pos: number) => number | undefined;
903
+ includes: (searchString: string, position?: number | undefined) => boolean;
904
+ endsWith: (searchString: string, endPosition?: number | undefined) => boolean;
905
+ normalize: {
906
+ (form: "NFC" | "NFD" | "NFKC" | "NFKD"): string;
907
+ (form?: string | undefined): string;
908
+ };
909
+ repeat: (count: number) => string;
910
+ startsWith: (searchString: string, position?: number | undefined) => boolean;
911
+ anchor: (name: string) => string;
912
+ big: () => string;
913
+ blink: () => string;
914
+ bold: () => string;
915
+ fixed: () => string;
916
+ fontcolor: (color: string) => string;
917
+ fontsize: {
918
+ (size: number): string;
919
+ (size: string): string;
920
+ };
921
+ italics: () => string;
922
+ link: (url: string) => string;
923
+ small: () => string;
924
+ strike: () => string;
925
+ sub: () => string;
926
+ sup: () => string;
927
+ padStart: (maxLength: number, fillString?: string | undefined) => string;
928
+ padEnd: (maxLength: number, fillString?: string | undefined) => string;
929
+ trimEnd: () => string;
930
+ trimStart: () => string;
931
+ trimLeft: () => string;
932
+ trimRight: () => string;
933
+ matchAll: (regexp: RegExp) => IterableIterator<RegExpMatchArray>;
934
+ replaceAll: {
935
+ (searchValue: string | RegExp, replaceValue: string): string;
936
+ (searchValue: string | RegExp, replacer: (substring: string, ...args: any[]) => string): string;
937
+ };
938
+ at: (index: number) => string | undefined;
939
+ [Symbol.iterator]: () => IterableIterator<string>;
940
+ };
941
+ errorFunc: {
942
+ [x: number]: string;
943
+ toString: () => string;
944
+ charAt: (pos: number) => string;
945
+ charCodeAt: (index: number) => number;
946
+ concat: (...strings: string[]) => string;
947
+ indexOf: (searchString: string, position?: number | undefined) => number;
948
+ lastIndexOf: (searchString: string, position?: number | undefined) => number;
949
+ localeCompare: {
950
+ (that: string): number;
951
+ (that: string, locales?: string | string[] | undefined, options?: Intl.CollatorOptions | undefined): number;
952
+ };
953
+ match: {
954
+ (regexp: string | RegExp): RegExpMatchArray | null;
955
+ (matcher: {
956
+ [Symbol.match](string: string): RegExpMatchArray | null;
957
+ }): RegExpMatchArray | null;
958
+ };
959
+ replace: {
960
+ (searchValue: string | RegExp, replaceValue: string): string;
961
+ (searchValue: string | RegExp, replacer: (substring: string, ...args: any[]) => string): string;
962
+ (searchValue: {
963
+ [Symbol.replace](string: string, replaceValue: string): string;
964
+ }, replaceValue: string): string;
965
+ (searchValue: {
966
+ [Symbol.replace](string: string, replacer: (substring: string, ...args: any[]) => string): string;
967
+ }, replacer: (substring: string, ...args: any[]) => string): string;
968
+ };
969
+ search: {
970
+ (regexp: string | RegExp): number;
971
+ (searcher: {
972
+ [Symbol.search](string: string): number;
973
+ }): number;
974
+ };
975
+ slice: (start?: number | undefined, end?: number | undefined) => string;
976
+ split: {
977
+ (separator: string | RegExp, limit?: number | undefined): string[];
978
+ (splitter: {
979
+ [Symbol.split](string: string, limit?: number | undefined): string[];
980
+ }, limit?: number | undefined): string[];
981
+ };
982
+ substring: (start: number, end?: number | undefined) => string;
983
+ toLowerCase: () => string;
984
+ toLocaleLowerCase: (locales?: string | string[] | undefined) => string;
985
+ toUpperCase: () => string;
986
+ toLocaleUpperCase: (locales?: string | string[] | undefined) => string;
987
+ trim: () => string;
988
+ readonly length: number;
989
+ substr: (from: number, length?: number | undefined) => string;
990
+ valueOf: () => string;
991
+ codePointAt: (pos: number) => number | undefined;
992
+ includes: (searchString: string, position?: number | undefined) => boolean;
993
+ endsWith: (searchString: string, endPosition?: number | undefined) => boolean;
994
+ normalize: {
995
+ (form: "NFC" | "NFD" | "NFKC" | "NFKD"): string;
996
+ (form?: string | undefined): string;
997
+ };
998
+ repeat: (count: number) => string;
999
+ startsWith: (searchString: string, position?: number | undefined) => boolean;
1000
+ anchor: (name: string) => string;
1001
+ big: () => string;
1002
+ blink: () => string;
1003
+ bold: () => string;
1004
+ fixed: () => string;
1005
+ fontcolor: (color: string) => string;
1006
+ fontsize: {
1007
+ (size: number): string;
1008
+ (size: string): string;
1009
+ };
1010
+ italics: () => string;
1011
+ link: (url: string) => string;
1012
+ small: () => string;
1013
+ strike: () => string;
1014
+ sub: () => string;
1015
+ sup: () => string;
1016
+ padStart: (maxLength: number, fillString?: string | undefined) => string;
1017
+ padEnd: (maxLength: number, fillString?: string | undefined) => string;
1018
+ trimEnd: () => string;
1019
+ trimStart: () => string;
1020
+ trimLeft: () => string;
1021
+ trimRight: () => string;
1022
+ matchAll: (regexp: RegExp) => IterableIterator<RegExpMatchArray>;
1023
+ replaceAll: {
1024
+ (searchValue: string | RegExp, replaceValue: string): string;
1025
+ (searchValue: string | RegExp, replacer: (substring: string, ...args: any[]) => string): string;
1026
+ };
1027
+ at: (index: number) => string | undefined;
1028
+ [Symbol.iterator]: () => IterableIterator<string>;
1029
+ };
1030
+ args: any;
1031
+ }[];
1032
+ eventScript: {
1033
+ key: string;
1034
+ name: string;
1035
+ func: string;
1036
+ param: string;
1037
+ }[];
1038
+ };
1039
+ };
1040
+ } & import("pinia").PiniaCustomStateProperties<formProps>): any;
1041
+ }, {
1042
+ addFormDesignConfig(item: any): void;
1043
+ getConfigByKey(key: string): any[];
1044
+ setFormData1(code: any): void;
1045
+ setFormData(): void;
1046
+ }>;
1047
+ export declare function useFormStoreWithOut(): import("pinia").Store<"form", formProps, {
1048
+ getFormDesignConfig(state: {
1049
+ list: any[];
1050
+ config: {};
1051
+ formData: {
1052
+ list: any[];
1053
+ config: {
1054
+ layout: string;
1055
+ baseScript: string;
1056
+ dataSource: {
1057
+ key: {
1058
+ [x: number]: string;
1059
+ toString: () => string;
1060
+ charAt: (pos: number) => string;
1061
+ charCodeAt: (index: number) => number;
1062
+ concat: (...strings: string[]) => string;
1063
+ indexOf: (searchString: string, position?: number | undefined) => number;
1064
+ lastIndexOf: (searchString: string, position?: number | undefined) => number;
1065
+ localeCompare: {
1066
+ (that: string): number;
1067
+ (that: string, locales?: string | string[] | undefined, options?: Intl.CollatorOptions | undefined): number;
1068
+ };
1069
+ match: {
1070
+ (regexp: string | RegExp): RegExpMatchArray | null;
1071
+ (matcher: {
1072
+ [Symbol.match](string: string): RegExpMatchArray | null;
1073
+ }): RegExpMatchArray | null;
1074
+ };
1075
+ replace: {
1076
+ (searchValue: string | RegExp, replaceValue: string): string;
1077
+ (searchValue: string | RegExp, replacer: (substring: string, ...args: any[]) => string): string;
1078
+ (searchValue: {
1079
+ [Symbol.replace](string: string, replaceValue: string): string;
1080
+ }, replaceValue: string): string;
1081
+ (searchValue: {
1082
+ [Symbol.replace](string: string, replacer: (substring: string, ...args: any[]) => string): string;
1083
+ }, replacer: (substring: string, ...args: any[]) => string): string;
1084
+ };
1085
+ search: {
1086
+ (regexp: string | RegExp): number;
1087
+ (searcher: {
1088
+ [Symbol.search](string: string): number;
1089
+ }): number;
1090
+ };
1091
+ slice: (start?: number | undefined, end?: number | undefined) => string;
1092
+ split: {
1093
+ (separator: string | RegExp, limit?: number | undefined): string[];
1094
+ (splitter: {
1095
+ [Symbol.split](string: string, limit?: number | undefined): string[];
1096
+ }, limit?: number | undefined): string[];
1097
+ };
1098
+ substring: (start: number, end?: number | undefined) => string;
1099
+ toLowerCase: () => string;
1100
+ toLocaleLowerCase: (locales?: string | string[] | undefined) => string;
1101
+ toUpperCase: () => string;
1102
+ toLocaleUpperCase: (locales?: string | string[] | undefined) => string;
1103
+ trim: () => string;
1104
+ readonly length: number;
1105
+ substr: (from: number, length?: number | undefined) => string;
1106
+ valueOf: () => string;
1107
+ codePointAt: (pos: number) => number | undefined;
1108
+ includes: (searchString: string, position?: number | undefined) => boolean;
1109
+ endsWith: (searchString: string, endPosition?: number | undefined) => boolean;
1110
+ normalize: {
1111
+ (form: "NFC" | "NFD" | "NFKC" | "NFKD"): string;
1112
+ (form?: string | undefined): string;
1113
+ };
1114
+ repeat: (count: number) => string;
1115
+ startsWith: (searchString: string, position?: number | undefined) => boolean;
1116
+ anchor: (name: string) => string;
1117
+ big: () => string;
1118
+ blink: () => string;
1119
+ bold: () => string;
1120
+ fixed: () => string;
1121
+ fontcolor: (color: string) => string;
1122
+ fontsize: {
1123
+ (size: number): string;
1124
+ (size: string): string;
1125
+ };
1126
+ italics: () => string;
1127
+ link: (url: string) => string;
1128
+ small: () => string;
1129
+ strike: () => string;
1130
+ sub: () => string;
1131
+ sup: () => string;
1132
+ padStart: (maxLength: number, fillString?: string | undefined) => string;
1133
+ padEnd: (maxLength: number, fillString?: string | undefined) => string;
1134
+ trimEnd: () => string;
1135
+ trimStart: () => string;
1136
+ trimLeft: () => string;
1137
+ trimRight: () => string;
1138
+ matchAll: (regexp: RegExp) => IterableIterator<RegExpMatchArray>;
1139
+ replaceAll: {
1140
+ (searchValue: string | RegExp, replaceValue: string): string;
1141
+ (searchValue: string | RegExp, replacer: (substring: string, ...args: any[]) => string): string;
1142
+ };
1143
+ at: (index: number) => string | undefined;
1144
+ [Symbol.iterator]: () => IterableIterator<string>;
1145
+ };
1146
+ name: {
1147
+ [x: number]: string;
1148
+ toString: () => string;
1149
+ charAt: (pos: number) => string;
1150
+ charCodeAt: (index: number) => number;
1151
+ concat: (...strings: string[]) => string;
1152
+ indexOf: (searchString: string, position?: number | undefined) => number;
1153
+ lastIndexOf: (searchString: string, position?: number | undefined) => number;
1154
+ localeCompare: {
1155
+ (that: string): number;
1156
+ (that: string, locales?: string | string[] | undefined, options?: Intl.CollatorOptions | undefined): number;
1157
+ };
1158
+ match: {
1159
+ (regexp: string | RegExp): RegExpMatchArray | null;
1160
+ (matcher: {
1161
+ [Symbol.match](string: string): RegExpMatchArray | null;
1162
+ }): RegExpMatchArray | null;
1163
+ };
1164
+ replace: {
1165
+ (searchValue: string | RegExp, replaceValue: string): string;
1166
+ (searchValue: string | RegExp, replacer: (substring: string, ...args: any[]) => string): string;
1167
+ (searchValue: {
1168
+ [Symbol.replace](string: string, replaceValue: string): string;
1169
+ }, replaceValue: string): string;
1170
+ (searchValue: {
1171
+ [Symbol.replace](string: string, replacer: (substring: string, ...args: any[]) => string): string;
1172
+ }, replacer: (substring: string, ...args: any[]) => string): string;
1173
+ };
1174
+ search: {
1175
+ (regexp: string | RegExp): number;
1176
+ (searcher: {
1177
+ [Symbol.search](string: string): number;
1178
+ }): number;
1179
+ };
1180
+ slice: (start?: number | undefined, end?: number | undefined) => string;
1181
+ split: {
1182
+ (separator: string | RegExp, limit?: number | undefined): string[];
1183
+ (splitter: {
1184
+ [Symbol.split](string: string, limit?: number | undefined): string[];
1185
+ }, limit?: number | undefined): string[];
1186
+ };
1187
+ substring: (start: number, end?: number | undefined) => string;
1188
+ toLowerCase: () => string;
1189
+ toLocaleLowerCase: (locales?: string | string[] | undefined) => string;
1190
+ toUpperCase: () => string;
1191
+ toLocaleUpperCase: (locales?: string | string[] | undefined) => string;
1192
+ trim: () => string;
1193
+ readonly length: number;
1194
+ substr: (from: number, length?: number | undefined) => string;
1195
+ valueOf: () => string;
1196
+ codePointAt: (pos: number) => number | undefined;
1197
+ includes: (searchString: string, position?: number | undefined) => boolean;
1198
+ endsWith: (searchString: string, endPosition?: number | undefined) => boolean;
1199
+ normalize: {
1200
+ (form: "NFC" | "NFD" | "NFKC" | "NFKD"): string;
1201
+ (form?: string | undefined): string;
1202
+ };
1203
+ repeat: (count: number) => string;
1204
+ startsWith: (searchString: string, position?: number | undefined) => boolean;
1205
+ anchor: (name: string) => string;
1206
+ big: () => string;
1207
+ blink: () => string;
1208
+ bold: () => string;
1209
+ fixed: () => string;
1210
+ fontcolor: (color: string) => string;
1211
+ fontsize: {
1212
+ (size: number): string;
1213
+ (size: string): string;
1214
+ };
1215
+ italics: () => string;
1216
+ link: (url: string) => string;
1217
+ small: () => string;
1218
+ strike: () => string;
1219
+ sub: () => string;
1220
+ sup: () => string;
1221
+ padStart: (maxLength: number, fillString?: string | undefined) => string;
1222
+ padEnd: (maxLength: number, fillString?: string | undefined) => string;
1223
+ trimEnd: () => string;
1224
+ trimStart: () => string;
1225
+ trimLeft: () => string;
1226
+ trimRight: () => string;
1227
+ matchAll: (regexp: RegExp) => IterableIterator<RegExpMatchArray>;
1228
+ replaceAll: {
1229
+ (searchValue: string | RegExp, replaceValue: string): string;
1230
+ (searchValue: string | RegExp, replacer: (substring: string, ...args: any[]) => string): string;
1231
+ };
1232
+ at: (index: number) => string | undefined;
1233
+ [Symbol.iterator]: () => IterableIterator<string>;
1234
+ };
1235
+ url: {
1236
+ [x: number]: string;
1237
+ toString: () => string;
1238
+ charAt: (pos: number) => string;
1239
+ charCodeAt: (index: number) => number;
1240
+ concat: (...strings: string[]) => string;
1241
+ indexOf: (searchString: string, position?: number | undefined) => number;
1242
+ lastIndexOf: (searchString: string, position?: number | undefined) => number;
1243
+ localeCompare: {
1244
+ (that: string): number;
1245
+ (that: string, locales?: string | string[] | undefined, options?: Intl.CollatorOptions | undefined): number;
1246
+ };
1247
+ match: {
1248
+ (regexp: string | RegExp): RegExpMatchArray | null;
1249
+ (matcher: {
1250
+ [Symbol.match](string: string): RegExpMatchArray | null;
1251
+ }): RegExpMatchArray | null;
1252
+ };
1253
+ replace: {
1254
+ (searchValue: string | RegExp, replaceValue: string): string;
1255
+ (searchValue: string | RegExp, replacer: (substring: string, ...args: any[]) => string): string;
1256
+ (searchValue: {
1257
+ [Symbol.replace](string: string, replaceValue: string): string;
1258
+ }, replaceValue: string): string;
1259
+ (searchValue: {
1260
+ [Symbol.replace](string: string, replacer: (substring: string, ...args: any[]) => string): string;
1261
+ }, replacer: (substring: string, ...args: any[]) => string): string;
1262
+ };
1263
+ search: {
1264
+ (regexp: string | RegExp): number;
1265
+ (searcher: {
1266
+ [Symbol.search](string: string): number;
1267
+ }): number;
1268
+ };
1269
+ slice: (start?: number | undefined, end?: number | undefined) => string;
1270
+ split: {
1271
+ (separator: string | RegExp, limit?: number | undefined): string[];
1272
+ (splitter: {
1273
+ [Symbol.split](string: string, limit?: number | undefined): string[];
1274
+ }, limit?: number | undefined): string[];
1275
+ };
1276
+ substring: (start: number, end?: number | undefined) => string;
1277
+ toLowerCase: () => string;
1278
+ toLocaleLowerCase: (locales?: string | string[] | undefined) => string;
1279
+ toUpperCase: () => string;
1280
+ toLocaleUpperCase: (locales?: string | string[] | undefined) => string;
1281
+ trim: () => string;
1282
+ readonly length: number;
1283
+ substr: (from: number, length?: number | undefined) => string;
1284
+ valueOf: () => string;
1285
+ codePointAt: (pos: number) => number | undefined;
1286
+ includes: (searchString: string, position?: number | undefined) => boolean;
1287
+ endsWith: (searchString: string, endPosition?: number | undefined) => boolean;
1288
+ normalize: {
1289
+ (form: "NFC" | "NFD" | "NFKC" | "NFKD"): string;
1290
+ (form?: string | undefined): string;
1291
+ };
1292
+ repeat: (count: number) => string;
1293
+ startsWith: (searchString: string, position?: number | undefined) => boolean;
1294
+ anchor: (name: string) => string;
1295
+ big: () => string;
1296
+ blink: () => string;
1297
+ bold: () => string;
1298
+ fixed: () => string;
1299
+ fontcolor: (color: string) => string;
1300
+ fontsize: {
1301
+ (size: number): string;
1302
+ (size: string): string;
1303
+ };
1304
+ italics: () => string;
1305
+ link: (url: string) => string;
1306
+ small: () => string;
1307
+ strike: () => string;
1308
+ sub: () => string;
1309
+ sup: () => string;
1310
+ padStart: (maxLength: number, fillString?: string | undefined) => string;
1311
+ padEnd: (maxLength: number, fillString?: string | undefined) => string;
1312
+ trimEnd: () => string;
1313
+ trimStart: () => string;
1314
+ trimLeft: () => string;
1315
+ trimRight: () => string;
1316
+ matchAll: (regexp: RegExp) => IterableIterator<RegExpMatchArray>;
1317
+ replaceAll: {
1318
+ (searchValue: string | RegExp, replaceValue: string): string;
1319
+ (searchValue: string | RegExp, replacer: (substring: string, ...args: any[]) => string): string;
1320
+ };
1321
+ at: (index: number) => string | undefined;
1322
+ [Symbol.iterator]: () => IterableIterator<string>;
1323
+ };
1324
+ method: {
1325
+ [x: number]: string;
1326
+ toString: () => string;
1327
+ charAt: (pos: number) => string;
1328
+ charCodeAt: (index: number) => number;
1329
+ concat: (...strings: string[]) => string;
1330
+ indexOf: (searchString: string, position?: number | undefined) => number;
1331
+ lastIndexOf: (searchString: string, position?: number | undefined) => number;
1332
+ localeCompare: {
1333
+ (that: string): number;
1334
+ (that: string, locales?: string | string[] | undefined, options?: Intl.CollatorOptions | undefined): number;
1335
+ };
1336
+ match: {
1337
+ (regexp: string | RegExp): RegExpMatchArray | null;
1338
+ (matcher: {
1339
+ [Symbol.match](string: string): RegExpMatchArray | null;
1340
+ }): RegExpMatchArray | null;
1341
+ };
1342
+ replace: {
1343
+ (searchValue: string | RegExp, replaceValue: string): string;
1344
+ (searchValue: string | RegExp, replacer: (substring: string, ...args: any[]) => string): string;
1345
+ (searchValue: {
1346
+ [Symbol.replace](string: string, replaceValue: string): string;
1347
+ }, replaceValue: string): string;
1348
+ (searchValue: {
1349
+ [Symbol.replace](string: string, replacer: (substring: string, ...args: any[]) => string): string;
1350
+ }, replacer: (substring: string, ...args: any[]) => string): string;
1351
+ };
1352
+ search: {
1353
+ (regexp: string | RegExp): number;
1354
+ (searcher: {
1355
+ [Symbol.search](string: string): number;
1356
+ }): number;
1357
+ };
1358
+ slice: (start?: number | undefined, end?: number | undefined) => string;
1359
+ split: {
1360
+ (separator: string | RegExp, limit?: number | undefined): string[];
1361
+ (splitter: {
1362
+ [Symbol.split](string: string, limit?: number | undefined): string[];
1363
+ }, limit?: number | undefined): string[];
1364
+ };
1365
+ substring: (start: number, end?: number | undefined) => string;
1366
+ toLowerCase: () => string;
1367
+ toLocaleLowerCase: (locales?: string | string[] | undefined) => string;
1368
+ toUpperCase: () => string;
1369
+ toLocaleUpperCase: (locales?: string | string[] | undefined) => string;
1370
+ trim: () => string;
1371
+ readonly length: number;
1372
+ substr: (from: number, length?: number | undefined) => string;
1373
+ valueOf: () => string;
1374
+ codePointAt: (pos: number) => number | undefined;
1375
+ includes: (searchString: string, position?: number | undefined) => boolean;
1376
+ endsWith: (searchString: string, endPosition?: number | undefined) => boolean;
1377
+ normalize: {
1378
+ (form: "NFC" | "NFD" | "NFKC" | "NFKD"): string;
1379
+ (form?: string | undefined): string;
1380
+ };
1381
+ repeat: (count: number) => string;
1382
+ startsWith: (searchString: string, position?: number | undefined) => boolean;
1383
+ anchor: (name: string) => string;
1384
+ big: () => string;
1385
+ blink: () => string;
1386
+ bold: () => string;
1387
+ fixed: () => string;
1388
+ fontcolor: (color: string) => string;
1389
+ fontsize: {
1390
+ (size: number): string;
1391
+ (size: string): string;
1392
+ };
1393
+ italics: () => string;
1394
+ link: (url: string) => string;
1395
+ small: () => string;
1396
+ strike: () => string;
1397
+ sub: () => string;
1398
+ sup: () => string;
1399
+ padStart: (maxLength: number, fillString?: string | undefined) => string;
1400
+ padEnd: (maxLength: number, fillString?: string | undefined) => string;
1401
+ trimEnd: () => string;
1402
+ trimStart: () => string;
1403
+ trimLeft: () => string;
1404
+ trimRight: () => string;
1405
+ matchAll: (regexp: RegExp) => IterableIterator<RegExpMatchArray>;
1406
+ replaceAll: {
1407
+ (searchValue: string | RegExp, replaceValue: string): string;
1408
+ (searchValue: string | RegExp, replacer: (substring: string, ...args: any[]) => string): string;
1409
+ };
1410
+ at: (index: number) => string | undefined;
1411
+ [Symbol.iterator]: () => IterableIterator<string>;
1412
+ };
1413
+ auto: {
1414
+ valueOf: () => boolean;
1415
+ };
1416
+ params: {
1417
+ key: {
1418
+ [x: number]: string;
1419
+ toString: () => string;
1420
+ charAt: (pos: number) => string;
1421
+ charCodeAt: (index: number) => number;
1422
+ concat: (...strings: string[]) => string;
1423
+ indexOf: (searchString: string, position?: number | undefined) => number;
1424
+ lastIndexOf: (searchString: string, position?: number | undefined) => number;
1425
+ localeCompare: {
1426
+ (that: string): number;
1427
+ (that: string, locales?: string | string[] | undefined, options?: Intl.CollatorOptions | undefined): number;
1428
+ };
1429
+ match: {
1430
+ (regexp: string | RegExp): RegExpMatchArray | null;
1431
+ (matcher: {
1432
+ [Symbol.match](string: string): RegExpMatchArray | null;
1433
+ }): RegExpMatchArray | null;
1434
+ };
1435
+ replace: {
1436
+ (searchValue: string | RegExp, replaceValue: string): string;
1437
+ (searchValue: string | RegExp, replacer: (substring: string, ...args: any[]) => string): string;
1438
+ (searchValue: {
1439
+ [Symbol.replace](string: string, replaceValue: string): string;
1440
+ }, replaceValue: string): string;
1441
+ (searchValue: {
1442
+ [Symbol.replace](string: string, replacer: (substring: string, ...args: any[]) => string): string;
1443
+ }, replacer: (substring: string, ...args: any[]) => string): string;
1444
+ };
1445
+ search: {
1446
+ (regexp: string | RegExp): number;
1447
+ (searcher: {
1448
+ [Symbol.search](string: string): number;
1449
+ }): number;
1450
+ };
1451
+ slice: (start?: number | undefined, end?: number | undefined) => string;
1452
+ split: {
1453
+ (separator: string | RegExp, limit?: number | undefined): string[];
1454
+ (splitter: {
1455
+ [Symbol.split](string: string, limit?: number | undefined): string[];
1456
+ }, limit?: number | undefined): string[];
1457
+ };
1458
+ substring: (start: number, end?: number | undefined) => string;
1459
+ toLowerCase: () => string;
1460
+ toLocaleLowerCase: (locales?: string | string[] | undefined) => string;
1461
+ toUpperCase: () => string;
1462
+ toLocaleUpperCase: (locales?: string | string[] | undefined) => string;
1463
+ trim: () => string;
1464
+ readonly length: number;
1465
+ substr: (from: number, length?: number | undefined) => string;
1466
+ valueOf: () => string;
1467
+ codePointAt: (pos: number) => number | undefined;
1468
+ includes: (searchString: string, position?: number | undefined) => boolean;
1469
+ endsWith: (searchString: string, endPosition?: number | undefined) => boolean;
1470
+ normalize: {
1471
+ (form: "NFC" | "NFD" | "NFKC" | "NFKD"): string;
1472
+ (form?: string | undefined): string;
1473
+ };
1474
+ repeat: (count: number) => string;
1475
+ startsWith: (searchString: string, position?: number | undefined) => boolean;
1476
+ anchor: (name: string) => string;
1477
+ big: () => string;
1478
+ blink: () => string;
1479
+ bold: () => string;
1480
+ fixed: () => string;
1481
+ fontcolor: (color: string) => string;
1482
+ fontsize: {
1483
+ (size: number): string;
1484
+ (size: string): string;
1485
+ };
1486
+ italics: () => string;
1487
+ link: (url: string) => string;
1488
+ small: () => string;
1489
+ strike: () => string;
1490
+ sub: () => string;
1491
+ sup: () => string;
1492
+ padStart: (maxLength: number, fillString?: string | undefined) => string;
1493
+ padEnd: (maxLength: number, fillString?: string | undefined) => string;
1494
+ trimEnd: () => string;
1495
+ trimStart: () => string;
1496
+ trimLeft: () => string;
1497
+ trimRight: () => string;
1498
+ matchAll: (regexp: RegExp) => IterableIterator<RegExpMatchArray>;
1499
+ replaceAll: {
1500
+ (searchValue: string | RegExp, replaceValue: string): string;
1501
+ (searchValue: string | RegExp, replacer: (substring: string, ...args: any[]) => string): string;
1502
+ };
1503
+ at: (index: number) => string | undefined;
1504
+ [Symbol.iterator]: () => IterableIterator<string>;
1505
+ };
1506
+ value: {
1507
+ [x: number]: string;
1508
+ toString: () => string;
1509
+ charAt: (pos: number) => string;
1510
+ charCodeAt: (index: number) => number;
1511
+ concat: (...strings: string[]) => string;
1512
+ indexOf: (searchString: string, position?: number | undefined) => number;
1513
+ lastIndexOf: (searchString: string, position?: number | undefined) => number;
1514
+ localeCompare: {
1515
+ (that: string): number;
1516
+ (that: string, locales?: string | string[] | undefined, options?: Intl.CollatorOptions | undefined): number;
1517
+ };
1518
+ match: {
1519
+ (regexp: string | RegExp): RegExpMatchArray | null;
1520
+ (matcher: {
1521
+ [Symbol.match](string: string): RegExpMatchArray | null;
1522
+ }): RegExpMatchArray | null;
1523
+ };
1524
+ replace: {
1525
+ (searchValue: string | RegExp, replaceValue: string): string;
1526
+ (searchValue: string | RegExp, replacer: (substring: string, ...args: any[]) => string): string;
1527
+ (searchValue: {
1528
+ [Symbol.replace](string: string, replaceValue: string): string;
1529
+ }, replaceValue: string): string;
1530
+ (searchValue: {
1531
+ [Symbol.replace](string: string, replacer: (substring: string, ...args: any[]) => string): string;
1532
+ }, replacer: (substring: string, ...args: any[]) => string): string;
1533
+ };
1534
+ search: {
1535
+ (regexp: string | RegExp): number;
1536
+ (searcher: {
1537
+ [Symbol.search](string: string): number;
1538
+ }): number;
1539
+ };
1540
+ slice: (start?: number | undefined, end?: number | undefined) => string;
1541
+ split: {
1542
+ (separator: string | RegExp, limit?: number | undefined): string[];
1543
+ (splitter: {
1544
+ [Symbol.split](string: string, limit?: number | undefined): string[];
1545
+ }, limit?: number | undefined): string[];
1546
+ };
1547
+ substring: (start: number, end?: number | undefined) => string;
1548
+ toLowerCase: () => string;
1549
+ toLocaleLowerCase: (locales?: string | string[] | undefined) => string;
1550
+ toUpperCase: () => string;
1551
+ toLocaleUpperCase: (locales?: string | string[] | undefined) => string;
1552
+ trim: () => string;
1553
+ readonly length: number;
1554
+ substr: (from: number, length?: number | undefined) => string;
1555
+ valueOf: () => string;
1556
+ codePointAt: (pos: number) => number | undefined;
1557
+ includes: (searchString: string, position?: number | undefined) => boolean;
1558
+ endsWith: (searchString: string, endPosition?: number | undefined) => boolean;
1559
+ normalize: {
1560
+ (form: "NFC" | "NFD" | "NFKC" | "NFKD"): string;
1561
+ (form?: string | undefined): string;
1562
+ };
1563
+ repeat: (count: number) => string;
1564
+ startsWith: (searchString: string, position?: number | undefined) => boolean;
1565
+ anchor: (name: string) => string;
1566
+ big: () => string;
1567
+ blink: () => string;
1568
+ bold: () => string;
1569
+ fixed: () => string;
1570
+ fontcolor: (color: string) => string;
1571
+ fontsize: {
1572
+ (size: number): string;
1573
+ (size: string): string;
1574
+ };
1575
+ italics: () => string;
1576
+ link: (url: string) => string;
1577
+ small: () => string;
1578
+ strike: () => string;
1579
+ sub: () => string;
1580
+ sup: () => string;
1581
+ padStart: (maxLength: number, fillString?: string | undefined) => string;
1582
+ padEnd: (maxLength: number, fillString?: string | undefined) => string;
1583
+ trimEnd: () => string;
1584
+ trimStart: () => string;
1585
+ trimLeft: () => string;
1586
+ trimRight: () => string;
1587
+ matchAll: (regexp: RegExp) => IterableIterator<RegExpMatchArray>;
1588
+ replaceAll: {
1589
+ (searchValue: string | RegExp, replaceValue: string): string;
1590
+ (searchValue: string | RegExp, replacer: (substring: string, ...args: any[]) => string): string;
1591
+ };
1592
+ at: (index: number) => string | undefined;
1593
+ [Symbol.iterator]: () => IterableIterator<string>;
1594
+ };
1595
+ }[];
1596
+ headers: {
1597
+ key: {
1598
+ [x: number]: string;
1599
+ toString: () => string;
1600
+ charAt: (pos: number) => string;
1601
+ charCodeAt: (index: number) => number;
1602
+ concat: (...strings: string[]) => string;
1603
+ indexOf: (searchString: string, position?: number | undefined) => number;
1604
+ lastIndexOf: (searchString: string, position?: number | undefined) => number;
1605
+ localeCompare: {
1606
+ (that: string): number;
1607
+ (that: string, locales?: string | string[] | undefined, options?: Intl.CollatorOptions | undefined): number;
1608
+ };
1609
+ match: {
1610
+ (regexp: string | RegExp): RegExpMatchArray | null;
1611
+ (matcher: {
1612
+ [Symbol.match](string: string): RegExpMatchArray | null;
1613
+ }): RegExpMatchArray | null;
1614
+ };
1615
+ replace: {
1616
+ (searchValue: string | RegExp, replaceValue: string): string;
1617
+ (searchValue: string | RegExp, replacer: (substring: string, ...args: any[]) => string): string;
1618
+ (searchValue: {
1619
+ [Symbol.replace](string: string, replaceValue: string): string;
1620
+ }, replaceValue: string): string;
1621
+ (searchValue: {
1622
+ [Symbol.replace](string: string, replacer: (substring: string, ...args: any[]) => string): string;
1623
+ }, replacer: (substring: string, ...args: any[]) => string): string;
1624
+ };
1625
+ search: {
1626
+ (regexp: string | RegExp): number;
1627
+ (searcher: {
1628
+ [Symbol.search](string: string): number;
1629
+ }): number;
1630
+ };
1631
+ slice: (start?: number | undefined, end?: number | undefined) => string;
1632
+ split: {
1633
+ (separator: string | RegExp, limit?: number | undefined): string[];
1634
+ (splitter: {
1635
+ [Symbol.split](string: string, limit?: number | undefined): string[];
1636
+ }, limit?: number | undefined): string[];
1637
+ };
1638
+ substring: (start: number, end?: number | undefined) => string;
1639
+ toLowerCase: () => string;
1640
+ toLocaleLowerCase: (locales?: string | string[] | undefined) => string;
1641
+ toUpperCase: () => string;
1642
+ toLocaleUpperCase: (locales?: string | string[] | undefined) => string;
1643
+ trim: () => string;
1644
+ readonly length: number;
1645
+ substr: (from: number, length?: number | undefined) => string;
1646
+ valueOf: () => string;
1647
+ codePointAt: (pos: number) => number | undefined;
1648
+ includes: (searchString: string, position?: number | undefined) => boolean;
1649
+ endsWith: (searchString: string, endPosition?: number | undefined) => boolean;
1650
+ normalize: {
1651
+ (form: "NFC" | "NFD" | "NFKC" | "NFKD"): string;
1652
+ (form?: string | undefined): string;
1653
+ };
1654
+ repeat: (count: number) => string;
1655
+ startsWith: (searchString: string, position?: number | undefined) => boolean;
1656
+ anchor: (name: string) => string;
1657
+ big: () => string;
1658
+ blink: () => string;
1659
+ bold: () => string;
1660
+ fixed: () => string;
1661
+ fontcolor: (color: string) => string;
1662
+ fontsize: {
1663
+ (size: number): string;
1664
+ (size: string): string;
1665
+ };
1666
+ italics: () => string;
1667
+ link: (url: string) => string;
1668
+ small: () => string;
1669
+ strike: () => string;
1670
+ sub: () => string;
1671
+ sup: () => string;
1672
+ padStart: (maxLength: number, fillString?: string | undefined) => string;
1673
+ padEnd: (maxLength: number, fillString?: string | undefined) => string;
1674
+ trimEnd: () => string;
1675
+ trimStart: () => string;
1676
+ trimLeft: () => string;
1677
+ trimRight: () => string;
1678
+ matchAll: (regexp: RegExp) => IterableIterator<RegExpMatchArray>;
1679
+ replaceAll: {
1680
+ (searchValue: string | RegExp, replaceValue: string): string;
1681
+ (searchValue: string | RegExp, replacer: (substring: string, ...args: any[]) => string): string;
1682
+ };
1683
+ at: (index: number) => string | undefined;
1684
+ [Symbol.iterator]: () => IterableIterator<string>;
1685
+ };
1686
+ value: {
1687
+ [x: number]: string;
1688
+ toString: () => string;
1689
+ charAt: (pos: number) => string;
1690
+ charCodeAt: (index: number) => number;
1691
+ concat: (...strings: string[]) => string;
1692
+ indexOf: (searchString: string, position?: number | undefined) => number;
1693
+ lastIndexOf: (searchString: string, position?: number | undefined) => number;
1694
+ localeCompare: {
1695
+ (that: string): number;
1696
+ (that: string, locales?: string | string[] | undefined, options?: Intl.CollatorOptions | undefined): number;
1697
+ };
1698
+ match: {
1699
+ (regexp: string | RegExp): RegExpMatchArray | null;
1700
+ (matcher: {
1701
+ [Symbol.match](string: string): RegExpMatchArray | null;
1702
+ }): RegExpMatchArray | null;
1703
+ };
1704
+ replace: {
1705
+ (searchValue: string | RegExp, replaceValue: string): string;
1706
+ (searchValue: string | RegExp, replacer: (substring: string, ...args: any[]) => string): string;
1707
+ (searchValue: {
1708
+ [Symbol.replace](string: string, replaceValue: string): string;
1709
+ }, replaceValue: string): string;
1710
+ (searchValue: {
1711
+ [Symbol.replace](string: string, replacer: (substring: string, ...args: any[]) => string): string;
1712
+ }, replacer: (substring: string, ...args: any[]) => string): string;
1713
+ };
1714
+ search: {
1715
+ (regexp: string | RegExp): number;
1716
+ (searcher: {
1717
+ [Symbol.search](string: string): number;
1718
+ }): number;
1719
+ };
1720
+ slice: (start?: number | undefined, end?: number | undefined) => string;
1721
+ split: {
1722
+ (separator: string | RegExp, limit?: number | undefined): string[];
1723
+ (splitter: {
1724
+ [Symbol.split](string: string, limit?: number | undefined): string[];
1725
+ }, limit?: number | undefined): string[];
1726
+ };
1727
+ substring: (start: number, end?: number | undefined) => string;
1728
+ toLowerCase: () => string;
1729
+ toLocaleLowerCase: (locales?: string | string[] | undefined) => string;
1730
+ toUpperCase: () => string;
1731
+ toLocaleUpperCase: (locales?: string | string[] | undefined) => string;
1732
+ trim: () => string;
1733
+ readonly length: number;
1734
+ substr: (from: number, length?: number | undefined) => string;
1735
+ valueOf: () => string;
1736
+ codePointAt: (pos: number) => number | undefined;
1737
+ includes: (searchString: string, position?: number | undefined) => boolean;
1738
+ endsWith: (searchString: string, endPosition?: number | undefined) => boolean;
1739
+ normalize: {
1740
+ (form: "NFC" | "NFD" | "NFKC" | "NFKD"): string;
1741
+ (form?: string | undefined): string;
1742
+ };
1743
+ repeat: (count: number) => string;
1744
+ startsWith: (searchString: string, position?: number | undefined) => boolean;
1745
+ anchor: (name: string) => string;
1746
+ big: () => string;
1747
+ blink: () => string;
1748
+ bold: () => string;
1749
+ fixed: () => string;
1750
+ fontcolor: (color: string) => string;
1751
+ fontsize: {
1752
+ (size: number): string;
1753
+ (size: string): string;
1754
+ };
1755
+ italics: () => string;
1756
+ link: (url: string) => string;
1757
+ small: () => string;
1758
+ strike: () => string;
1759
+ sub: () => string;
1760
+ sup: () => string;
1761
+ padStart: (maxLength: number, fillString?: string | undefined) => string;
1762
+ padEnd: (maxLength: number, fillString?: string | undefined) => string;
1763
+ trimEnd: () => string;
1764
+ trimStart: () => string;
1765
+ trimLeft: () => string;
1766
+ trimRight: () => string;
1767
+ matchAll: (regexp: RegExp) => IterableIterator<RegExpMatchArray>;
1768
+ replaceAll: {
1769
+ (searchValue: string | RegExp, replaceValue: string): string;
1770
+ (searchValue: string | RegExp, replacer: (substring: string, ...args: any[]) => string): string;
1771
+ };
1772
+ at: (index: number) => string | undefined;
1773
+ [Symbol.iterator]: () => IterableIterator<string>;
1774
+ };
1775
+ }[];
1776
+ responseFunc: {
1777
+ [x: number]: string;
1778
+ toString: () => string;
1779
+ charAt: (pos: number) => string;
1780
+ charCodeAt: (index: number) => number;
1781
+ concat: (...strings: string[]) => string;
1782
+ indexOf: (searchString: string, position?: number | undefined) => number;
1783
+ lastIndexOf: (searchString: string, position?: number | undefined) => number;
1784
+ localeCompare: {
1785
+ (that: string): number;
1786
+ (that: string, locales?: string | string[] | undefined, options?: Intl.CollatorOptions | undefined): number;
1787
+ };
1788
+ match: {
1789
+ (regexp: string | RegExp): RegExpMatchArray | null;
1790
+ (matcher: {
1791
+ [Symbol.match](string: string): RegExpMatchArray | null;
1792
+ }): RegExpMatchArray | null;
1793
+ };
1794
+ replace: {
1795
+ (searchValue: string | RegExp, replaceValue: string): string;
1796
+ (searchValue: string | RegExp, replacer: (substring: string, ...args: any[]) => string): string;
1797
+ (searchValue: {
1798
+ [Symbol.replace](string: string, replaceValue: string): string;
1799
+ }, replaceValue: string): string;
1800
+ (searchValue: {
1801
+ [Symbol.replace](string: string, replacer: (substring: string, ...args: any[]) => string): string;
1802
+ }, replacer: (substring: string, ...args: any[]) => string): string;
1803
+ };
1804
+ search: {
1805
+ (regexp: string | RegExp): number;
1806
+ (searcher: {
1807
+ [Symbol.search](string: string): number;
1808
+ }): number;
1809
+ };
1810
+ slice: (start?: number | undefined, end?: number | undefined) => string;
1811
+ split: {
1812
+ (separator: string | RegExp, limit?: number | undefined): string[];
1813
+ (splitter: {
1814
+ [Symbol.split](string: string, limit?: number | undefined): string[];
1815
+ }, limit?: number | undefined): string[];
1816
+ };
1817
+ substring: (start: number, end?: number | undefined) => string;
1818
+ toLowerCase: () => string;
1819
+ toLocaleLowerCase: (locales?: string | string[] | undefined) => string;
1820
+ toUpperCase: () => string;
1821
+ toLocaleUpperCase: (locales?: string | string[] | undefined) => string;
1822
+ trim: () => string;
1823
+ readonly length: number;
1824
+ substr: (from: number, length?: number | undefined) => string;
1825
+ valueOf: () => string;
1826
+ codePointAt: (pos: number) => number | undefined;
1827
+ includes: (searchString: string, position?: number | undefined) => boolean;
1828
+ endsWith: (searchString: string, endPosition?: number | undefined) => boolean;
1829
+ normalize: {
1830
+ (form: "NFC" | "NFD" | "NFKC" | "NFKD"): string;
1831
+ (form?: string | undefined): string;
1832
+ };
1833
+ repeat: (count: number) => string;
1834
+ startsWith: (searchString: string, position?: number | undefined) => boolean;
1835
+ anchor: (name: string) => string;
1836
+ big: () => string;
1837
+ blink: () => string;
1838
+ bold: () => string;
1839
+ fixed: () => string;
1840
+ fontcolor: (color: string) => string;
1841
+ fontsize: {
1842
+ (size: number): string;
1843
+ (size: string): string;
1844
+ };
1845
+ italics: () => string;
1846
+ link: (url: string) => string;
1847
+ small: () => string;
1848
+ strike: () => string;
1849
+ sub: () => string;
1850
+ sup: () => string;
1851
+ padStart: (maxLength: number, fillString?: string | undefined) => string;
1852
+ padEnd: (maxLength: number, fillString?: string | undefined) => string;
1853
+ trimEnd: () => string;
1854
+ trimStart: () => string;
1855
+ trimLeft: () => string;
1856
+ trimRight: () => string;
1857
+ matchAll: (regexp: RegExp) => IterableIterator<RegExpMatchArray>;
1858
+ replaceAll: {
1859
+ (searchValue: string | RegExp, replaceValue: string): string;
1860
+ (searchValue: string | RegExp, replacer: (substring: string, ...args: any[]) => string): string;
1861
+ };
1862
+ at: (index: number) => string | undefined;
1863
+ [Symbol.iterator]: () => IterableIterator<string>;
1864
+ };
1865
+ requestFunc: {
1866
+ [x: number]: string;
1867
+ toString: () => string;
1868
+ charAt: (pos: number) => string;
1869
+ charCodeAt: (index: number) => number;
1870
+ concat: (...strings: string[]) => string;
1871
+ indexOf: (searchString: string, position?: number | undefined) => number;
1872
+ lastIndexOf: (searchString: string, position?: number | undefined) => number;
1873
+ localeCompare: {
1874
+ (that: string): number;
1875
+ (that: string, locales?: string | string[] | undefined, options?: Intl.CollatorOptions | undefined): number;
1876
+ };
1877
+ match: {
1878
+ (regexp: string | RegExp): RegExpMatchArray | null;
1879
+ (matcher: {
1880
+ [Symbol.match](string: string): RegExpMatchArray | null;
1881
+ }): RegExpMatchArray | null;
1882
+ };
1883
+ replace: {
1884
+ (searchValue: string | RegExp, replaceValue: string): string;
1885
+ (searchValue: string | RegExp, replacer: (substring: string, ...args: any[]) => string): string;
1886
+ (searchValue: {
1887
+ [Symbol.replace](string: string, replaceValue: string): string;
1888
+ }, replaceValue: string): string;
1889
+ (searchValue: {
1890
+ [Symbol.replace](string: string, replacer: (substring: string, ...args: any[]) => string): string;
1891
+ }, replacer: (substring: string, ...args: any[]) => string): string;
1892
+ };
1893
+ search: {
1894
+ (regexp: string | RegExp): number;
1895
+ (searcher: {
1896
+ [Symbol.search](string: string): number;
1897
+ }): number;
1898
+ };
1899
+ slice: (start?: number | undefined, end?: number | undefined) => string;
1900
+ split: {
1901
+ (separator: string | RegExp, limit?: number | undefined): string[];
1902
+ (splitter: {
1903
+ [Symbol.split](string: string, limit?: number | undefined): string[];
1904
+ }, limit?: number | undefined): string[];
1905
+ };
1906
+ substring: (start: number, end?: number | undefined) => string;
1907
+ toLowerCase: () => string;
1908
+ toLocaleLowerCase: (locales?: string | string[] | undefined) => string;
1909
+ toUpperCase: () => string;
1910
+ toLocaleUpperCase: (locales?: string | string[] | undefined) => string;
1911
+ trim: () => string;
1912
+ readonly length: number;
1913
+ substr: (from: number, length?: number | undefined) => string;
1914
+ valueOf: () => string;
1915
+ codePointAt: (pos: number) => number | undefined;
1916
+ includes: (searchString: string, position?: number | undefined) => boolean;
1917
+ endsWith: (searchString: string, endPosition?: number | undefined) => boolean;
1918
+ normalize: {
1919
+ (form: "NFC" | "NFD" | "NFKC" | "NFKD"): string;
1920
+ (form?: string | undefined): string;
1921
+ };
1922
+ repeat: (count: number) => string;
1923
+ startsWith: (searchString: string, position?: number | undefined) => boolean;
1924
+ anchor: (name: string) => string;
1925
+ big: () => string;
1926
+ blink: () => string;
1927
+ bold: () => string;
1928
+ fixed: () => string;
1929
+ fontcolor: (color: string) => string;
1930
+ fontsize: {
1931
+ (size: number): string;
1932
+ (size: string): string;
1933
+ };
1934
+ italics: () => string;
1935
+ link: (url: string) => string;
1936
+ small: () => string;
1937
+ strike: () => string;
1938
+ sub: () => string;
1939
+ sup: () => string;
1940
+ padStart: (maxLength: number, fillString?: string | undefined) => string;
1941
+ padEnd: (maxLength: number, fillString?: string | undefined) => string;
1942
+ trimEnd: () => string;
1943
+ trimStart: () => string;
1944
+ trimLeft: () => string;
1945
+ trimRight: () => string;
1946
+ matchAll: (regexp: RegExp) => IterableIterator<RegExpMatchArray>;
1947
+ replaceAll: {
1948
+ (searchValue: string | RegExp, replaceValue: string): string;
1949
+ (searchValue: string | RegExp, replacer: (substring: string, ...args: any[]) => string): string;
1950
+ };
1951
+ at: (index: number) => string | undefined;
1952
+ [Symbol.iterator]: () => IterableIterator<string>;
1953
+ };
1954
+ errorFunc: {
1955
+ [x: number]: string;
1956
+ toString: () => string;
1957
+ charAt: (pos: number) => string;
1958
+ charCodeAt: (index: number) => number;
1959
+ concat: (...strings: string[]) => string;
1960
+ indexOf: (searchString: string, position?: number | undefined) => number;
1961
+ lastIndexOf: (searchString: string, position?: number | undefined) => number;
1962
+ localeCompare: {
1963
+ (that: string): number;
1964
+ (that: string, locales?: string | string[] | undefined, options?: Intl.CollatorOptions | undefined): number;
1965
+ };
1966
+ match: {
1967
+ (regexp: string | RegExp): RegExpMatchArray | null;
1968
+ (matcher: {
1969
+ [Symbol.match](string: string): RegExpMatchArray | null;
1970
+ }): RegExpMatchArray | null;
1971
+ };
1972
+ replace: {
1973
+ (searchValue: string | RegExp, replaceValue: string): string;
1974
+ (searchValue: string | RegExp, replacer: (substring: string, ...args: any[]) => string): string;
1975
+ (searchValue: {
1976
+ [Symbol.replace](string: string, replaceValue: string): string;
1977
+ }, replaceValue: string): string;
1978
+ (searchValue: {
1979
+ [Symbol.replace](string: string, replacer: (substring: string, ...args: any[]) => string): string;
1980
+ }, replacer: (substring: string, ...args: any[]) => string): string;
1981
+ };
1982
+ search: {
1983
+ (regexp: string | RegExp): number;
1984
+ (searcher: {
1985
+ [Symbol.search](string: string): number;
1986
+ }): number;
1987
+ };
1988
+ slice: (start?: number | undefined, end?: number | undefined) => string;
1989
+ split: {
1990
+ (separator: string | RegExp, limit?: number | undefined): string[];
1991
+ (splitter: {
1992
+ [Symbol.split](string: string, limit?: number | undefined): string[];
1993
+ }, limit?: number | undefined): string[];
1994
+ };
1995
+ substring: (start: number, end?: number | undefined) => string;
1996
+ toLowerCase: () => string;
1997
+ toLocaleLowerCase: (locales?: string | string[] | undefined) => string;
1998
+ toUpperCase: () => string;
1999
+ toLocaleUpperCase: (locales?: string | string[] | undefined) => string;
2000
+ trim: () => string;
2001
+ readonly length: number;
2002
+ substr: (from: number, length?: number | undefined) => string;
2003
+ valueOf: () => string;
2004
+ codePointAt: (pos: number) => number | undefined;
2005
+ includes: (searchString: string, position?: number | undefined) => boolean;
2006
+ endsWith: (searchString: string, endPosition?: number | undefined) => boolean;
2007
+ normalize: {
2008
+ (form: "NFC" | "NFD" | "NFKC" | "NFKD"): string;
2009
+ (form?: string | undefined): string;
2010
+ };
2011
+ repeat: (count: number) => string;
2012
+ startsWith: (searchString: string, position?: number | undefined) => boolean;
2013
+ anchor: (name: string) => string;
2014
+ big: () => string;
2015
+ blink: () => string;
2016
+ bold: () => string;
2017
+ fixed: () => string;
2018
+ fontcolor: (color: string) => string;
2019
+ fontsize: {
2020
+ (size: number): string;
2021
+ (size: string): string;
2022
+ };
2023
+ italics: () => string;
2024
+ link: (url: string) => string;
2025
+ small: () => string;
2026
+ strike: () => string;
2027
+ sub: () => string;
2028
+ sup: () => string;
2029
+ padStart: (maxLength: number, fillString?: string | undefined) => string;
2030
+ padEnd: (maxLength: number, fillString?: string | undefined) => string;
2031
+ trimEnd: () => string;
2032
+ trimStart: () => string;
2033
+ trimLeft: () => string;
2034
+ trimRight: () => string;
2035
+ matchAll: (regexp: RegExp) => IterableIterator<RegExpMatchArray>;
2036
+ replaceAll: {
2037
+ (searchValue: string | RegExp, replaceValue: string): string;
2038
+ (searchValue: string | RegExp, replacer: (substring: string, ...args: any[]) => string): string;
2039
+ };
2040
+ at: (index: number) => string | undefined;
2041
+ [Symbol.iterator]: () => IterableIterator<string>;
2042
+ };
2043
+ args: any;
2044
+ }[];
2045
+ eventScript: {
2046
+ key: string;
2047
+ name: string;
2048
+ func: string;
2049
+ param: string;
2050
+ }[];
2051
+ };
2052
+ };
2053
+ } & import("pinia").PiniaCustomStateProperties<formProps>): any;
2054
+ }, {
2055
+ addFormDesignConfig(item: any): void;
2056
+ getConfigByKey(key: string): any[];
2057
+ setFormData1(code: any): void;
2058
+ setFormData(): void;
2059
+ }>;
2060
+ export {};