quasar-factory-lib 0.1.18 → 0.1.20

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.
@@ -75,6 +75,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
75
75
  default: () => number[];
76
76
  };
77
77
  }>, {}, {
78
+ pagination: {
79
+ rowsPerPage: number;
80
+ };
78
81
  selected: never[];
79
82
  filter: string;
80
83
  rowsData: object[];
@@ -130,6 +133,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
130
133
  }): any;
131
134
  getAdvancedFilterColumns(): void;
132
135
  handleInfiniteScrollTableCompositionAPi(): void;
136
+ onVirtualScroll(args: any): void;
133
137
  }, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("onSelectVisibleColumns" | "onClickButton" | "onClickIconToolTip" | "onSaveValuePopupEdit" | "onUpdateBasicCheckboxValue" | "onUpdateCustomizedCheckboxValue" | "modifyPriorityOrder" | "storeUpdated" | "deleteItem" | "openModalWithTable" | "setItemNotFound" | "onClickSeeTaskDetails" | "startMaintenanceTicket" | "pauseMaintenanceTicket" | "finishMaintenanceTicket" | "onRowClick" | "onUpdateSelected" | "setLineRemainingQty" | "setLineNoStock" | "onDoneLineMaintenanceTasks" | "reprintSULabel" | "onDragStart" | "onDragUpdate" | "onDragEnd" | "onClickRowBtnPrintOP" | "getPOFromWorkCenter" | "getProductionTimesMachineCenter" | "operatorMachineAssignmentAssignMachine" | "operatorMachineAssignmentSetDate" | "operatorMachineAssignmentSetPartialMachineCenter" | "operatorMachineAssignmentSeeDetail" | "onClickOpenDialogOperators")[], "onSelectVisibleColumns" | "onClickButton" | "onClickIconToolTip" | "onSaveValuePopupEdit" | "onUpdateBasicCheckboxValue" | "onUpdateCustomizedCheckboxValue" | "modifyPriorityOrder" | "storeUpdated" | "deleteItem" | "openModalWithTable" | "setItemNotFound" | "onClickSeeTaskDetails" | "startMaintenanceTicket" | "pauseMaintenanceTicket" | "finishMaintenanceTicket" | "onRowClick" | "onUpdateSelected" | "setLineRemainingQty" | "setLineNoStock" | "onDoneLineMaintenanceTasks" | "reprintSULabel" | "onDragStart" | "onDragUpdate" | "onDragEnd" | "onClickRowBtnPrintOP" | "getPOFromWorkCenter" | "getProductionTimesMachineCenter" | "operatorMachineAssignmentAssignMachine" | "operatorMachineAssignmentSetDate" | "operatorMachineAssignmentSetPartialMachineCenter" | "operatorMachineAssignmentSeeDetail" | "onClickOpenDialogOperators", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
134
138
  columns: {
135
139
  type: () => object[];
@@ -1,8 +1,10 @@
1
1
  import type { Plugin } from 'vue';
2
2
  import MyTable from './Table.vue';
3
+ import DraggableQTable from './Table.vue';
3
4
  /** export button specific types */
4
5
  /** export button plugin */
5
6
  declare const _default: Plugin;
6
7
  export default _default;
7
8
  /** export button components */
8
9
  export { MyTable as MyTable };
10
+ export { DraggableQTable as DraggableQTable };
@@ -1,4 +1,5 @@
1
1
  import MyTable from './Table';
2
+ import DraggableQTable from './Table';
2
3
  import AlertDialog from './Alert';
3
4
  import ConfirmDialog from './Confirm';
4
5
  import TaskNavBar from './TaskNavBar';
@@ -11,4 +12,4 @@ import SkeletonAreas from './SkeletonAreas';
11
12
  import ListSkeleton from './ListSkeleton';
12
13
  import SkeletonTaskList from './SkeletonTaskList';
13
14
  import SkeletonFormCreateTask from './SkeletonFormCreateTask';
14
- export { MyTable, AlertDialog, ConfirmDialog, TaskNavBar, ConfirmedTask, TableRowsCounter, NavBarSkeleton, AlertLabelsWithError, FormSkeleton, SkeletonAreas, ListSkeleton, SkeletonTaskList, SkeletonFormCreateTask };
15
+ export { DraggableQTable, MyTable, AlertDialog, ConfirmDialog, TaskNavBar, ConfirmedTask, TableRowsCounter, NavBarSkeleton, AlertLabelsWithError, FormSkeleton, SkeletonAreas, ListSkeleton, SkeletonTaskList, SkeletonFormCreateTask };
package/dist/index.d.ts CHANGED
@@ -1,7 +1,7 @@
1
1
  import '@quasar/extras/material-icons/material-icons.css';
2
2
  import { Plugin } from 'vue';
3
3
  import TranslateKeys from './i18n/translateKeys.ts';
4
- export { MyTable, AlertDialog, ConfirmDialog, TaskNavBar, ConfirmedTask, TableRowsCounter, NavBarSkeleton, AlertLabelsWithError, FormSkeleton, SkeletonAreas, ListSkeleton, SkeletonTaskList, SkeletonFormCreateTask } from './components/index.ts';
4
+ export { DraggableQTable, MyTable, AlertDialog, ConfirmDialog, TaskNavBar, ConfirmedTask, TableRowsCounter, NavBarSkeleton, AlertLabelsWithError, FormSkeleton, SkeletonAreas, ListSkeleton, SkeletonTaskList, SkeletonFormCreateTask } from './components/index.ts';
5
5
  export type { TranslateKeys };
6
6
  export * from './i18n/messages.js';
7
7
  export * from './utils';
@@ -14,322 +14,72 @@ declare const _default: import("vue").DefineComponent<{}, {}, {
14
14
  tableStyle: string;
15
15
  columns: ({
16
16
  name: string;
17
- required: boolean;
18
17
  label: string;
19
- align: string;
20
- sortable: boolean;
21
- type: string;
22
- showBasicCheckbox?: undefined;
23
- checkBoxDataCy?: undefined;
24
- showCustomizedIcon?: undefined;
25
- field?: undefined;
26
- editable?: undefined;
27
- showEditIcon?: undefined;
28
- popupEditEmit?: undefined;
29
- popupEditDataCy?: undefined;
30
- mask?: undefined;
31
- showSelectNumberOptions?: undefined;
32
- popupEditInputtype?: undefined;
33
- showCustomizedButton?: undefined;
34
- btnIcon?: undefined;
35
- btnEmit?: undefined;
36
- dataCy?: undefined;
37
- btnColor?: undefined;
38
- inputMaxLength?: undefined;
39
- showCustomizedCheckBox?: undefined;
40
- checkedIcon?: undefined;
41
- uncheckedIcon?: undefined;
42
- checkBoxColorCaseTrue?: undefined;
43
- checkBoxColorCaseFalse?: undefined;
44
- showInputPopupEdit?: undefined;
45
- } | {
46
- name: string;
18
+ field: string;
47
19
  required: boolean;
48
- label: string;
49
- align: string;
50
- sortable: boolean;
51
- showBasicCheckbox: boolean;
52
- type: string;
53
- checkBoxDataCy: string;
54
- showCustomizedIcon?: undefined;
55
- field?: undefined;
56
- editable?: undefined;
57
- showEditIcon?: undefined;
58
- popupEditEmit?: undefined;
59
- popupEditDataCy?: undefined;
60
- mask?: undefined;
61
- showSelectNumberOptions?: undefined;
62
- popupEditInputtype?: undefined;
63
- showCustomizedButton?: undefined;
64
- btnIcon?: undefined;
65
- btnEmit?: undefined;
66
- dataCy?: undefined;
67
- btnColor?: undefined;
68
- inputMaxLength?: undefined;
69
- showCustomizedCheckBox?: undefined;
70
- checkedIcon?: undefined;
71
- uncheckedIcon?: undefined;
72
- checkBoxColorCaseTrue?: undefined;
73
- checkBoxColorCaseFalse?: undefined;
74
- showInputPopupEdit?: undefined;
20
+ align?: undefined;
21
+ format?: undefined;
22
+ sortable?: undefined;
23
+ sort?: undefined;
75
24
  } | {
76
25
  name: string;
77
26
  required: boolean;
78
27
  label: string;
79
28
  align: string;
29
+ field: (row: any) => any;
30
+ format: (val: any) => string;
80
31
  sortable: boolean;
81
- showCustomizedIcon: boolean;
82
- type: string;
83
- showBasicCheckbox?: undefined;
84
- checkBoxDataCy?: undefined;
85
- field?: undefined;
86
- editable?: undefined;
87
- showEditIcon?: undefined;
88
- popupEditEmit?: undefined;
89
- popupEditDataCy?: undefined;
90
- mask?: undefined;
91
- showSelectNumberOptions?: undefined;
92
- popupEditInputtype?: undefined;
93
- showCustomizedButton?: undefined;
94
- btnIcon?: undefined;
95
- btnEmit?: undefined;
96
- dataCy?: undefined;
97
- btnColor?: undefined;
98
- inputMaxLength?: undefined;
99
- showCustomizedCheckBox?: undefined;
100
- checkedIcon?: undefined;
101
- uncheckedIcon?: undefined;
102
- checkBoxColorCaseTrue?: undefined;
103
- checkBoxColorCaseFalse?: undefined;
104
- showInputPopupEdit?: undefined;
32
+ sort?: undefined;
105
33
  } | {
106
34
  name: string;
107
35
  align: string;
108
36
  label: string;
109
37
  field: string;
110
38
  sortable: boolean;
111
- editable: boolean;
112
- showEditIcon: boolean;
113
- popupEditEmit: string;
114
- popupEditDataCy: string;
115
- mask: string;
116
- showSelectNumberOptions: boolean;
117
- popupEditInputtype: string;
118
- type: string;
119
39
  required?: undefined;
120
- showBasicCheckbox?: undefined;
121
- checkBoxDataCy?: undefined;
122
- showCustomizedIcon?: undefined;
123
- showCustomizedButton?: undefined;
124
- btnIcon?: undefined;
125
- btnEmit?: undefined;
126
- dataCy?: undefined;
127
- btnColor?: undefined;
128
- inputMaxLength?: undefined;
129
- showCustomizedCheckBox?: undefined;
130
- checkedIcon?: undefined;
131
- uncheckedIcon?: undefined;
132
- checkBoxColorCaseTrue?: undefined;
133
- checkBoxColorCaseFalse?: undefined;
134
- showInputPopupEdit?: undefined;
40
+ format?: undefined;
41
+ sort?: undefined;
135
42
  } | {
136
43
  name: string;
137
44
  label: string;
138
45
  field: string;
139
46
  sortable: boolean;
140
- showCustomizedButton: boolean;
141
- btnIcon: string;
142
- btnEmit: string;
143
- dataCy: string;
144
- btnColor: string;
145
- type: string;
146
47
  required?: undefined;
147
48
  align?: undefined;
148
- showBasicCheckbox?: undefined;
149
- checkBoxDataCy?: undefined;
150
- showCustomizedIcon?: undefined;
151
- editable?: undefined;
152
- showEditIcon?: undefined;
153
- popupEditEmit?: undefined;
154
- popupEditDataCy?: undefined;
155
- mask?: undefined;
156
- showSelectNumberOptions?: undefined;
157
- popupEditInputtype?: undefined;
158
- inputMaxLength?: undefined;
159
- showCustomizedCheckBox?: undefined;
160
- checkedIcon?: undefined;
161
- uncheckedIcon?: undefined;
162
- checkBoxColorCaseTrue?: undefined;
163
- checkBoxColorCaseFalse?: undefined;
164
- showInputPopupEdit?: undefined;
49
+ format?: undefined;
50
+ sort?: undefined;
165
51
  } | {
166
52
  name: string;
167
53
  label: string;
168
54
  field: string;
169
- editable: boolean;
170
- popupEditEmit: string;
171
- popupEditDataCy: string;
172
- inputMaxLength: number;
173
- popupEditInputtype: string;
174
- type: string;
175
55
  required?: undefined;
176
56
  align?: undefined;
57
+ format?: undefined;
177
58
  sortable?: undefined;
178
- showBasicCheckbox?: undefined;
179
- checkBoxDataCy?: undefined;
180
- showCustomizedIcon?: undefined;
181
- showEditIcon?: undefined;
182
- mask?: undefined;
183
- showSelectNumberOptions?: undefined;
184
- showCustomizedButton?: undefined;
185
- btnIcon?: undefined;
186
- btnEmit?: undefined;
187
- dataCy?: undefined;
188
- btnColor?: undefined;
189
- showCustomizedCheckBox?: undefined;
190
- checkedIcon?: undefined;
191
- uncheckedIcon?: undefined;
192
- checkBoxColorCaseTrue?: undefined;
193
- checkBoxColorCaseFalse?: undefined;
194
- showInputPopupEdit?: undefined;
59
+ sort?: undefined;
195
60
  } | {
196
61
  name: string;
197
62
  label: string;
198
63
  field: string;
199
64
  sortable: boolean;
200
- required: boolean;
201
- showCustomizedCheckBox: boolean;
202
- checkedIcon: string;
203
- uncheckedIcon: string;
204
- checkBoxColorCaseTrue: string;
205
- checkBoxColorCaseFalse: string;
206
- checkBoxDataCy: string;
207
- type: string;
208
- align?: undefined;
209
- showBasicCheckbox?: undefined;
210
- showCustomizedIcon?: undefined;
211
- editable?: undefined;
212
- showEditIcon?: undefined;
213
- popupEditEmit?: undefined;
214
- popupEditDataCy?: undefined;
215
- mask?: undefined;
216
- showSelectNumberOptions?: undefined;
217
- popupEditInputtype?: undefined;
218
- showCustomizedButton?: undefined;
219
- btnIcon?: undefined;
220
- btnEmit?: undefined;
221
- dataCy?: undefined;
222
- btnColor?: undefined;
223
- inputMaxLength?: undefined;
224
- showInputPopupEdit?: undefined;
225
- } | {
226
- name: string;
227
- label: string;
228
- field: string;
229
- sortable: boolean;
230
- required: boolean;
231
- editable: boolean;
232
- showEditIcon: boolean;
233
- popupEditEmit: string;
234
- popupEditInputtype: string;
235
- popupEditDataCy: string;
236
- showInputPopupEdit: boolean;
237
- type: string;
238
- align?: undefined;
239
- showBasicCheckbox?: undefined;
240
- checkBoxDataCy?: undefined;
241
- showCustomizedIcon?: undefined;
242
- mask?: undefined;
243
- showSelectNumberOptions?: undefined;
244
- showCustomizedButton?: undefined;
245
- btnIcon?: undefined;
246
- btnEmit?: undefined;
247
- dataCy?: undefined;
248
- btnColor?: undefined;
249
- inputMaxLength?: undefined;
250
- showCustomizedCheckBox?: undefined;
251
- checkedIcon?: undefined;
252
- uncheckedIcon?: undefined;
253
- checkBoxColorCaseTrue?: undefined;
254
- checkBoxColorCaseFalse?: undefined;
255
- } | {
256
- name: string;
257
- label: string;
258
- field: string;
259
- type: string;
260
- required?: undefined;
261
- align?: undefined;
262
- sortable?: undefined;
263
- showBasicCheckbox?: undefined;
264
- checkBoxDataCy?: undefined;
265
- showCustomizedIcon?: undefined;
266
- editable?: undefined;
267
- showEditIcon?: undefined;
268
- popupEditEmit?: undefined;
269
- popupEditDataCy?: undefined;
270
- mask?: undefined;
271
- showSelectNumberOptions?: undefined;
272
- popupEditInputtype?: undefined;
273
- showCustomizedButton?: undefined;
274
- btnIcon?: undefined;
275
- btnEmit?: undefined;
276
- dataCy?: undefined;
277
- btnColor?: undefined;
278
- inputMaxLength?: undefined;
279
- showCustomizedCheckBox?: undefined;
280
- checkedIcon?: undefined;
281
- uncheckedIcon?: undefined;
282
- checkBoxColorCaseTrue?: undefined;
283
- checkBoxColorCaseFalse?: undefined;
284
- showInputPopupEdit?: undefined;
285
- } | {
286
- name: string;
287
- label: string;
288
- field: string;
289
- sortable: boolean;
290
- type: string;
65
+ sort: (a: any, b: any) => number;
291
66
  required?: undefined;
292
67
  align?: undefined;
293
- showBasicCheckbox?: undefined;
294
- checkBoxDataCy?: undefined;
295
- showCustomizedIcon?: undefined;
296
- editable?: undefined;
297
- showEditIcon?: undefined;
298
- popupEditEmit?: undefined;
299
- popupEditDataCy?: undefined;
300
- mask?: undefined;
301
- showSelectNumberOptions?: undefined;
302
- popupEditInputtype?: undefined;
303
- showCustomizedButton?: undefined;
304
- btnIcon?: undefined;
305
- btnEmit?: undefined;
306
- dataCy?: undefined;
307
- btnColor?: undefined;
308
- inputMaxLength?: undefined;
309
- showCustomizedCheckBox?: undefined;
310
- checkedIcon?: undefined;
311
- uncheckedIcon?: undefined;
312
- checkBoxColorCaseTrue?: undefined;
313
- checkBoxColorCaseFalse?: undefined;
314
- showInputPopupEdit?: undefined;
68
+ format?: undefined;
315
69
  })[];
316
70
  rows: never[];
317
- rowsData: {
318
- id: number;
71
+ showSkeleton: boolean;
72
+ buttonsList: never[];
73
+ seed: {
319
74
  name: string;
320
- booleanIcon: boolean;
321
- available: boolean;
322
75
  calories: number;
323
76
  fat: number;
324
77
  carbs: number;
325
- checked: boolean;
326
78
  protein: number;
327
79
  sodium: number;
328
80
  calcium: string;
329
81
  iron: string;
330
82
  }[];
331
- showSkeleton: boolean;
332
- buttonsList: never[];
333
83
  }, {
334
84
  smallDevice(): boolean;
335
85
  }, {
@@ -344,6 +94,7 @@ declare const _default: import("vue").DefineComponent<{}, {}, {
344
94
  retryReadLabel(): void;
345
95
  onCloseDialogLabelsError(): void;
346
96
  getAlertLabelsWithError(): void;
97
+ generateRows(): object[];
347
98
  }, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {
348
99
  TaskNavBar: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
349
100
  logo: {
@@ -483,6 +234,9 @@ declare const _default: import("vue").DefineComponent<{}, {}, {
483
234
  default: () => number[];
484
235
  };
485
236
  }>, {}, {
237
+ pagination: {
238
+ rowsPerPage: number;
239
+ };
486
240
  selected: never[];
487
241
  filter: string;
488
242
  rowsData: object[];
@@ -538,6 +292,7 @@ declare const _default: import("vue").DefineComponent<{}, {}, {
538
292
  }): any;
539
293
  getAdvancedFilterColumns(): void;
540
294
  handleInfiniteScrollTableCompositionAPi(): void;
295
+ onVirtualScroll(args: any): void;
541
296
  }, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("onSelectVisibleColumns" | "onClickButton" | "onClickIconToolTip" | "onSaveValuePopupEdit" | "onUpdateBasicCheckboxValue" | "onUpdateCustomizedCheckboxValue" | "modifyPriorityOrder" | "storeUpdated" | "deleteItem" | "openModalWithTable" | "setItemNotFound" | "onClickSeeTaskDetails" | "startMaintenanceTicket" | "pauseMaintenanceTicket" | "finishMaintenanceTicket" | "onRowClick" | "onUpdateSelected" | "setLineRemainingQty" | "setLineNoStock" | "onDoneLineMaintenanceTasks" | "reprintSULabel" | "onDragStart" | "onDragUpdate" | "onDragEnd" | "onClickRowBtnPrintOP" | "getPOFromWorkCenter" | "getProductionTimesMachineCenter" | "operatorMachineAssignmentAssignMachine" | "operatorMachineAssignmentSetDate" | "operatorMachineAssignmentSetPartialMachineCenter" | "operatorMachineAssignmentSeeDetail" | "onClickOpenDialogOperators")[], "onSelectVisibleColumns" | "onClickButton" | "onClickIconToolTip" | "onSaveValuePopupEdit" | "onUpdateBasicCheckboxValue" | "onUpdateCustomizedCheckboxValue" | "modifyPriorityOrder" | "storeUpdated" | "deleteItem" | "openModalWithTable" | "setItemNotFound" | "onClickSeeTaskDetails" | "startMaintenanceTicket" | "pauseMaintenanceTicket" | "finishMaintenanceTicket" | "onRowClick" | "onUpdateSelected" | "setLineRemainingQty" | "setLineNoStock" | "onDoneLineMaintenanceTasks" | "reprintSULabel" | "onDragStart" | "onDragUpdate" | "onDragEnd" | "onClickRowBtnPrintOP" | "getPOFromWorkCenter" | "getProductionTimesMachineCenter" | "operatorMachineAssignmentAssignMachine" | "operatorMachineAssignmentSetDate" | "operatorMachineAssignmentSetPartialMachineCenter" | "operatorMachineAssignmentSeeDetail" | "onClickOpenDialogOperators", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
542
297
  columns: {
543
298
  type: () => object[];
@@ -629,6 +629,9 @@ declare const _default: import("vue").DefineComponent<{}, {}, {
629
629
  default: () => number[];
630
630
  };
631
631
  }>, {}, {
632
+ pagination: {
633
+ rowsPerPage: number;
634
+ };
632
635
  selected: never[];
633
636
  filter: string;
634
637
  rowsData: object[];
@@ -684,6 +687,7 @@ declare const _default: import("vue").DefineComponent<{}, {}, {
684
687
  }): any;
685
688
  getAdvancedFilterColumns(): void;
686
689
  handleInfiniteScrollTableCompositionAPi(): void;
690
+ onVirtualScroll(args: any): void;
687
691
  }, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("onSelectVisibleColumns" | "onClickButton" | "onClickIconToolTip" | "onSaveValuePopupEdit" | "onUpdateBasicCheckboxValue" | "onUpdateCustomizedCheckboxValue" | "modifyPriorityOrder" | "storeUpdated" | "deleteItem" | "openModalWithTable" | "setItemNotFound" | "onClickSeeTaskDetails" | "startMaintenanceTicket" | "pauseMaintenanceTicket" | "finishMaintenanceTicket" | "onRowClick" | "onUpdateSelected" | "setLineRemainingQty" | "setLineNoStock" | "onDoneLineMaintenanceTasks" | "reprintSULabel" | "onDragStart" | "onDragUpdate" | "onDragEnd" | "onClickRowBtnPrintOP" | "getPOFromWorkCenter" | "getProductionTimesMachineCenter" | "operatorMachineAssignmentAssignMachine" | "operatorMachineAssignmentSetDate" | "operatorMachineAssignmentSetPartialMachineCenter" | "operatorMachineAssignmentSeeDetail" | "onClickOpenDialogOperators")[], "onSelectVisibleColumns" | "onClickButton" | "onClickIconToolTip" | "onSaveValuePopupEdit" | "onUpdateBasicCheckboxValue" | "onUpdateCustomizedCheckboxValue" | "modifyPriorityOrder" | "storeUpdated" | "deleteItem" | "openModalWithTable" | "setItemNotFound" | "onClickSeeTaskDetails" | "startMaintenanceTicket" | "pauseMaintenanceTicket" | "finishMaintenanceTicket" | "onRowClick" | "onUpdateSelected" | "setLineRemainingQty" | "setLineNoStock" | "onDoneLineMaintenanceTasks" | "reprintSULabel" | "onDragStart" | "onDragUpdate" | "onDragEnd" | "onClickRowBtnPrintOP" | "getPOFromWorkCenter" | "getProductionTimesMachineCenter" | "operatorMachineAssignmentAssignMachine" | "operatorMachineAssignmentSetDate" | "operatorMachineAssignmentSetPartialMachineCenter" | "operatorMachineAssignmentSeeDetail" | "onClickOpenDialogOperators", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
688
692
  columns: {
689
693
  type: () => object[];