seven365-zyprinter 0.1.0 → 0.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/docs.json
CHANGED
|
@@ -113,19 +113,19 @@
|
|
|
113
113
|
},
|
|
114
114
|
{
|
|
115
115
|
"name": "printReceipt",
|
|
116
|
-
"signature": "(options: { template:
|
|
116
|
+
"signature": "(options: { template: ReceiptTemplate; identifier: string; }) => Promise<{ success: boolean; }>",
|
|
117
117
|
"parameters": [
|
|
118
118
|
{
|
|
119
119
|
"name": "options",
|
|
120
120
|
"docs": "",
|
|
121
|
-
"type": "{ template:
|
|
121
|
+
"type": "{ template: ReceiptTemplate; identifier: string; }"
|
|
122
122
|
}
|
|
123
123
|
],
|
|
124
124
|
"returns": "Promise<{ success: boolean; }>",
|
|
125
125
|
"tags": [],
|
|
126
126
|
"docs": "",
|
|
127
127
|
"complexTypes": [
|
|
128
|
-
"
|
|
128
|
+
"ReceiptTemplate"
|
|
129
129
|
],
|
|
130
130
|
"slug": "printreceipt"
|
|
131
131
|
},
|
|
@@ -206,24 +206,945 @@
|
|
|
206
206
|
"type": "number | undefined"
|
|
207
207
|
}
|
|
208
208
|
]
|
|
209
|
-
}
|
|
210
|
-
],
|
|
211
|
-
"enums": [],
|
|
212
|
-
"typeAliases": [
|
|
209
|
+
},
|
|
213
210
|
{
|
|
214
|
-
"name": "
|
|
215
|
-
"slug": "
|
|
216
|
-
"docs": "
|
|
217
|
-
"
|
|
211
|
+
"name": "ReceiptTemplate",
|
|
212
|
+
"slug": "receipttemplate",
|
|
213
|
+
"docs": "",
|
|
214
|
+
"tags": [],
|
|
215
|
+
"methods": [],
|
|
216
|
+
"properties": [
|
|
218
217
|
{
|
|
219
|
-
"
|
|
218
|
+
"name": "header",
|
|
219
|
+
"tags": [],
|
|
220
|
+
"docs": "",
|
|
221
|
+
"complexTypes": [],
|
|
222
|
+
"type": "string | undefined"
|
|
223
|
+
},
|
|
224
|
+
{
|
|
225
|
+
"name": "items",
|
|
226
|
+
"tags": [],
|
|
227
|
+
"docs": "",
|
|
228
|
+
"complexTypes": [
|
|
229
|
+
"Array"
|
|
230
|
+
],
|
|
231
|
+
"type": "Array<{ name: string; price: string }>"
|
|
232
|
+
},
|
|
233
|
+
{
|
|
234
|
+
"name": "total",
|
|
235
|
+
"tags": [],
|
|
236
|
+
"docs": "",
|
|
237
|
+
"complexTypes": [],
|
|
238
|
+
"type": "string | undefined"
|
|
239
|
+
},
|
|
240
|
+
{
|
|
241
|
+
"name": "footer",
|
|
242
|
+
"tags": [],
|
|
243
|
+
"docs": "",
|
|
244
|
+
"complexTypes": [],
|
|
245
|
+
"type": "string | undefined"
|
|
246
|
+
},
|
|
247
|
+
{
|
|
248
|
+
"name": "formatting",
|
|
249
|
+
"tags": [],
|
|
250
|
+
"docs": "",
|
|
251
|
+
"complexTypes": [
|
|
252
|
+
"ReceiptFormatting"
|
|
253
|
+
],
|
|
254
|
+
"type": "ReceiptFormatting"
|
|
255
|
+
}
|
|
256
|
+
]
|
|
257
|
+
},
|
|
258
|
+
{
|
|
259
|
+
"name": "Array",
|
|
260
|
+
"slug": "array",
|
|
261
|
+
"docs": "",
|
|
262
|
+
"tags": [],
|
|
263
|
+
"methods": [
|
|
264
|
+
{
|
|
265
|
+
"name": "toString",
|
|
266
|
+
"signature": "() => string",
|
|
267
|
+
"parameters": [],
|
|
268
|
+
"returns": "string",
|
|
269
|
+
"tags": [],
|
|
270
|
+
"docs": "Returns a string representation of an array.",
|
|
271
|
+
"complexTypes": [],
|
|
272
|
+
"slug": "tostring"
|
|
273
|
+
},
|
|
274
|
+
{
|
|
275
|
+
"name": "toLocaleString",
|
|
276
|
+
"signature": "() => string",
|
|
277
|
+
"parameters": [],
|
|
278
|
+
"returns": "string",
|
|
279
|
+
"tags": [],
|
|
280
|
+
"docs": "Returns a string representation of an array. The elements are converted to string using their toLocalString methods.",
|
|
281
|
+
"complexTypes": [],
|
|
282
|
+
"slug": "tolocalestring"
|
|
283
|
+
},
|
|
284
|
+
{
|
|
285
|
+
"name": "pop",
|
|
286
|
+
"signature": "() => T | undefined",
|
|
287
|
+
"parameters": [],
|
|
288
|
+
"returns": "T | undefined",
|
|
289
|
+
"tags": [],
|
|
290
|
+
"docs": "Removes the last element from an array and returns it.\r\nIf the array is empty, undefined is returned and the array is not modified.",
|
|
220
291
|
"complexTypes": [
|
|
221
|
-
"K",
|
|
222
292
|
"T"
|
|
223
|
-
]
|
|
293
|
+
],
|
|
294
|
+
"slug": "pop"
|
|
295
|
+
},
|
|
296
|
+
{
|
|
297
|
+
"name": "push",
|
|
298
|
+
"signature": "(...items: T[]) => number",
|
|
299
|
+
"parameters": [
|
|
300
|
+
{
|
|
301
|
+
"name": "items",
|
|
302
|
+
"docs": "New elements to add to the array.",
|
|
303
|
+
"type": "T[]"
|
|
304
|
+
}
|
|
305
|
+
],
|
|
306
|
+
"returns": "number",
|
|
307
|
+
"tags": [
|
|
308
|
+
{
|
|
309
|
+
"name": "param",
|
|
310
|
+
"text": "items New elements to add to the array."
|
|
311
|
+
}
|
|
312
|
+
],
|
|
313
|
+
"docs": "Appends new elements to the end of an array, and returns the new length of the array.",
|
|
314
|
+
"complexTypes": [
|
|
315
|
+
"T"
|
|
316
|
+
],
|
|
317
|
+
"slug": "push"
|
|
318
|
+
},
|
|
319
|
+
{
|
|
320
|
+
"name": "concat",
|
|
321
|
+
"signature": "(...items: ConcatArray<T>[]) => T[]",
|
|
322
|
+
"parameters": [
|
|
323
|
+
{
|
|
324
|
+
"name": "items",
|
|
325
|
+
"docs": "Additional arrays and/or items to add to the end of the array.",
|
|
326
|
+
"type": "ConcatArray<T>[]"
|
|
327
|
+
}
|
|
328
|
+
],
|
|
329
|
+
"returns": "T[]",
|
|
330
|
+
"tags": [
|
|
331
|
+
{
|
|
332
|
+
"name": "param",
|
|
333
|
+
"text": "items Additional arrays and/or items to add to the end of the array."
|
|
334
|
+
}
|
|
335
|
+
],
|
|
336
|
+
"docs": "Combines two or more arrays.\r\nThis method returns a new array without modifying any existing arrays.",
|
|
337
|
+
"complexTypes": [
|
|
338
|
+
"T",
|
|
339
|
+
"ConcatArray"
|
|
340
|
+
],
|
|
341
|
+
"slug": "concat"
|
|
342
|
+
},
|
|
343
|
+
{
|
|
344
|
+
"name": "concat",
|
|
345
|
+
"signature": "(...items: (T | ConcatArray<T>)[]) => T[]",
|
|
346
|
+
"parameters": [
|
|
347
|
+
{
|
|
348
|
+
"name": "items",
|
|
349
|
+
"docs": "Additional arrays and/or items to add to the end of the array.",
|
|
350
|
+
"type": "(T | ConcatArray<T>)[]"
|
|
351
|
+
}
|
|
352
|
+
],
|
|
353
|
+
"returns": "T[]",
|
|
354
|
+
"tags": [
|
|
355
|
+
{
|
|
356
|
+
"name": "param",
|
|
357
|
+
"text": "items Additional arrays and/or items to add to the end of the array."
|
|
358
|
+
}
|
|
359
|
+
],
|
|
360
|
+
"docs": "Combines two or more arrays.\r\nThis method returns a new array without modifying any existing arrays.",
|
|
361
|
+
"complexTypes": [
|
|
362
|
+
"T",
|
|
363
|
+
"ConcatArray"
|
|
364
|
+
],
|
|
365
|
+
"slug": "concat"
|
|
366
|
+
},
|
|
367
|
+
{
|
|
368
|
+
"name": "join",
|
|
369
|
+
"signature": "(separator?: string | undefined) => string",
|
|
370
|
+
"parameters": [
|
|
371
|
+
{
|
|
372
|
+
"name": "separator",
|
|
373
|
+
"docs": "A string used to separate one element of the array from the next in the resulting string. If omitted, the array elements are separated with a comma.",
|
|
374
|
+
"type": "string | undefined"
|
|
375
|
+
}
|
|
376
|
+
],
|
|
377
|
+
"returns": "string",
|
|
378
|
+
"tags": [
|
|
379
|
+
{
|
|
380
|
+
"name": "param",
|
|
381
|
+
"text": "separator A string used to separate one element of the array from the next in the resulting string. If omitted, the array elements are separated with a comma."
|
|
382
|
+
}
|
|
383
|
+
],
|
|
384
|
+
"docs": "Adds all the elements of an array into a string, separated by the specified separator string.",
|
|
385
|
+
"complexTypes": [],
|
|
386
|
+
"slug": "join"
|
|
387
|
+
},
|
|
388
|
+
{
|
|
389
|
+
"name": "reverse",
|
|
390
|
+
"signature": "() => T[]",
|
|
391
|
+
"parameters": [],
|
|
392
|
+
"returns": "T[]",
|
|
393
|
+
"tags": [],
|
|
394
|
+
"docs": "Reverses the elements in an array in place.\r\nThis method mutates the array and returns a reference to the same array.",
|
|
395
|
+
"complexTypes": [
|
|
396
|
+
"T"
|
|
397
|
+
],
|
|
398
|
+
"slug": "reverse"
|
|
399
|
+
},
|
|
400
|
+
{
|
|
401
|
+
"name": "shift",
|
|
402
|
+
"signature": "() => T | undefined",
|
|
403
|
+
"parameters": [],
|
|
404
|
+
"returns": "T | undefined",
|
|
405
|
+
"tags": [],
|
|
406
|
+
"docs": "Removes the first element from an array and returns it.\r\nIf the array is empty, undefined is returned and the array is not modified.",
|
|
407
|
+
"complexTypes": [
|
|
408
|
+
"T"
|
|
409
|
+
],
|
|
410
|
+
"slug": "shift"
|
|
411
|
+
},
|
|
412
|
+
{
|
|
413
|
+
"name": "slice",
|
|
414
|
+
"signature": "(start?: number | undefined, end?: number | undefined) => T[]",
|
|
415
|
+
"parameters": [
|
|
416
|
+
{
|
|
417
|
+
"name": "start",
|
|
418
|
+
"docs": "The beginning index of the specified portion of the array.\r\nIf start is undefined, then the slice begins at index 0.",
|
|
419
|
+
"type": "number | undefined"
|
|
420
|
+
},
|
|
421
|
+
{
|
|
422
|
+
"name": "end",
|
|
423
|
+
"docs": "The end index of the specified portion of the array. This is exclusive of the element at the index 'end'.\r\nIf end is undefined, then the slice extends to the end of the array.",
|
|
424
|
+
"type": "number | undefined"
|
|
425
|
+
}
|
|
426
|
+
],
|
|
427
|
+
"returns": "T[]",
|
|
428
|
+
"tags": [
|
|
429
|
+
{
|
|
430
|
+
"name": "param",
|
|
431
|
+
"text": "start The beginning index of the specified portion of the array.\r\nIf start is undefined, then the slice begins at index 0."
|
|
432
|
+
},
|
|
433
|
+
{
|
|
434
|
+
"name": "param",
|
|
435
|
+
"text": "end The end index of the specified portion of the array. This is exclusive of the element at the index 'end'.\r\nIf end is undefined, then the slice extends to the end of the array."
|
|
436
|
+
}
|
|
437
|
+
],
|
|
438
|
+
"docs": "Returns a copy of a section of an array.\r\nFor both start and end, a negative index can be used to indicate an offset from the end of the array.\r\nFor example, -2 refers to the second to last element of the array.",
|
|
439
|
+
"complexTypes": [
|
|
440
|
+
"T"
|
|
441
|
+
],
|
|
442
|
+
"slug": "slice"
|
|
443
|
+
},
|
|
444
|
+
{
|
|
445
|
+
"name": "sort",
|
|
446
|
+
"signature": "(compareFn?: ((a: T, b: T) => number) | undefined) => this",
|
|
447
|
+
"parameters": [
|
|
448
|
+
{
|
|
449
|
+
"name": "compareFn",
|
|
450
|
+
"docs": "Function used to determine the order of the elements. It is expected to return\r\na negative value if first argument is less than second argument, zero if they're equal and a positive\r\nvalue otherwise. If omitted, the elements are sorted in ascending, ASCII character order.\r\n```ts\r\n[11,2,22,1].sort((a, b) => a - b)\r\n```",
|
|
451
|
+
"type": "((a: T, b: T) => number) | undefined"
|
|
452
|
+
}
|
|
453
|
+
],
|
|
454
|
+
"returns": "this",
|
|
455
|
+
"tags": [
|
|
456
|
+
{
|
|
457
|
+
"name": "param",
|
|
458
|
+
"text": "compareFn Function used to determine the order of the elements. It is expected to return\r\na negative value if first argument is less than second argument, zero if they're equal and a positive\r\nvalue otherwise. If omitted, the elements are sorted in ascending, ASCII character order.\r\n```ts\r\n[11,2,22,1].sort((a, b) => a - b)\r\n```"
|
|
459
|
+
}
|
|
460
|
+
],
|
|
461
|
+
"docs": "Sorts an array in place.\r\nThis method mutates the array and returns a reference to the same array.",
|
|
462
|
+
"complexTypes": [
|
|
463
|
+
"T"
|
|
464
|
+
],
|
|
465
|
+
"slug": "sort"
|
|
466
|
+
},
|
|
467
|
+
{
|
|
468
|
+
"name": "splice",
|
|
469
|
+
"signature": "(start: number, deleteCount?: number | undefined) => T[]",
|
|
470
|
+
"parameters": [
|
|
471
|
+
{
|
|
472
|
+
"name": "start",
|
|
473
|
+
"docs": "The zero-based location in the array from which to start removing elements.",
|
|
474
|
+
"type": "number"
|
|
475
|
+
},
|
|
476
|
+
{
|
|
477
|
+
"name": "deleteCount",
|
|
478
|
+
"docs": "The number of elements to remove.",
|
|
479
|
+
"type": "number | undefined"
|
|
480
|
+
}
|
|
481
|
+
],
|
|
482
|
+
"returns": "T[]",
|
|
483
|
+
"tags": [
|
|
484
|
+
{
|
|
485
|
+
"name": "param",
|
|
486
|
+
"text": "start The zero-based location in the array from which to start removing elements."
|
|
487
|
+
},
|
|
488
|
+
{
|
|
489
|
+
"name": "param",
|
|
490
|
+
"text": "deleteCount The number of elements to remove."
|
|
491
|
+
},
|
|
492
|
+
{
|
|
493
|
+
"name": "returns",
|
|
494
|
+
"text": "An array containing the elements that were deleted."
|
|
495
|
+
}
|
|
496
|
+
],
|
|
497
|
+
"docs": "Removes elements from an array and, if necessary, inserts new elements in their place, returning the deleted elements.",
|
|
498
|
+
"complexTypes": [
|
|
499
|
+
"T"
|
|
500
|
+
],
|
|
501
|
+
"slug": "splice"
|
|
502
|
+
},
|
|
503
|
+
{
|
|
504
|
+
"name": "splice",
|
|
505
|
+
"signature": "(start: number, deleteCount: number, ...items: T[]) => T[]",
|
|
506
|
+
"parameters": [
|
|
507
|
+
{
|
|
508
|
+
"name": "start",
|
|
509
|
+
"docs": "The zero-based location in the array from which to start removing elements.",
|
|
510
|
+
"type": "number"
|
|
511
|
+
},
|
|
512
|
+
{
|
|
513
|
+
"name": "deleteCount",
|
|
514
|
+
"docs": "The number of elements to remove.",
|
|
515
|
+
"type": "number"
|
|
516
|
+
},
|
|
517
|
+
{
|
|
518
|
+
"name": "items",
|
|
519
|
+
"docs": "Elements to insert into the array in place of the deleted elements.",
|
|
520
|
+
"type": "T[]"
|
|
521
|
+
}
|
|
522
|
+
],
|
|
523
|
+
"returns": "T[]",
|
|
524
|
+
"tags": [
|
|
525
|
+
{
|
|
526
|
+
"name": "param",
|
|
527
|
+
"text": "start The zero-based location in the array from which to start removing elements."
|
|
528
|
+
},
|
|
529
|
+
{
|
|
530
|
+
"name": "param",
|
|
531
|
+
"text": "deleteCount The number of elements to remove."
|
|
532
|
+
},
|
|
533
|
+
{
|
|
534
|
+
"name": "param",
|
|
535
|
+
"text": "items Elements to insert into the array in place of the deleted elements."
|
|
536
|
+
},
|
|
537
|
+
{
|
|
538
|
+
"name": "returns",
|
|
539
|
+
"text": "An array containing the elements that were deleted."
|
|
540
|
+
}
|
|
541
|
+
],
|
|
542
|
+
"docs": "Removes elements from an array and, if necessary, inserts new elements in their place, returning the deleted elements.",
|
|
543
|
+
"complexTypes": [
|
|
544
|
+
"T"
|
|
545
|
+
],
|
|
546
|
+
"slug": "splice"
|
|
547
|
+
},
|
|
548
|
+
{
|
|
549
|
+
"name": "unshift",
|
|
550
|
+
"signature": "(...items: T[]) => number",
|
|
551
|
+
"parameters": [
|
|
552
|
+
{
|
|
553
|
+
"name": "items",
|
|
554
|
+
"docs": "Elements to insert at the start of the array.",
|
|
555
|
+
"type": "T[]"
|
|
556
|
+
}
|
|
557
|
+
],
|
|
558
|
+
"returns": "number",
|
|
559
|
+
"tags": [
|
|
560
|
+
{
|
|
561
|
+
"name": "param",
|
|
562
|
+
"text": "items Elements to insert at the start of the array."
|
|
563
|
+
}
|
|
564
|
+
],
|
|
565
|
+
"docs": "Inserts new elements at the start of an array, and returns the new length of the array.",
|
|
566
|
+
"complexTypes": [
|
|
567
|
+
"T"
|
|
568
|
+
],
|
|
569
|
+
"slug": "unshift"
|
|
570
|
+
},
|
|
571
|
+
{
|
|
572
|
+
"name": "indexOf",
|
|
573
|
+
"signature": "(searchElement: T, fromIndex?: number | undefined) => number",
|
|
574
|
+
"parameters": [
|
|
575
|
+
{
|
|
576
|
+
"name": "searchElement",
|
|
577
|
+
"docs": "The value to locate in the array.",
|
|
578
|
+
"type": "T"
|
|
579
|
+
},
|
|
580
|
+
{
|
|
581
|
+
"name": "fromIndex",
|
|
582
|
+
"docs": "The array index at which to begin the search. If fromIndex is omitted, the search starts at index 0.",
|
|
583
|
+
"type": "number | undefined"
|
|
584
|
+
}
|
|
585
|
+
],
|
|
586
|
+
"returns": "number",
|
|
587
|
+
"tags": [
|
|
588
|
+
{
|
|
589
|
+
"name": "param",
|
|
590
|
+
"text": "searchElement The value to locate in the array."
|
|
591
|
+
},
|
|
592
|
+
{
|
|
593
|
+
"name": "param",
|
|
594
|
+
"text": "fromIndex The array index at which to begin the search. If fromIndex is omitted, the search starts at index 0."
|
|
595
|
+
}
|
|
596
|
+
],
|
|
597
|
+
"docs": "Returns the index of the first occurrence of a value in an array, or -1 if it is not present.",
|
|
598
|
+
"complexTypes": [
|
|
599
|
+
"T"
|
|
600
|
+
],
|
|
601
|
+
"slug": "indexof"
|
|
602
|
+
},
|
|
603
|
+
{
|
|
604
|
+
"name": "lastIndexOf",
|
|
605
|
+
"signature": "(searchElement: T, fromIndex?: number | undefined) => number",
|
|
606
|
+
"parameters": [
|
|
607
|
+
{
|
|
608
|
+
"name": "searchElement",
|
|
609
|
+
"docs": "The value to locate in the array.",
|
|
610
|
+
"type": "T"
|
|
611
|
+
},
|
|
612
|
+
{
|
|
613
|
+
"name": "fromIndex",
|
|
614
|
+
"docs": "The array index at which to begin searching backward. If fromIndex is omitted, the search starts at the last index in the array.",
|
|
615
|
+
"type": "number | undefined"
|
|
616
|
+
}
|
|
617
|
+
],
|
|
618
|
+
"returns": "number",
|
|
619
|
+
"tags": [
|
|
620
|
+
{
|
|
621
|
+
"name": "param",
|
|
622
|
+
"text": "searchElement The value to locate in the array."
|
|
623
|
+
},
|
|
624
|
+
{
|
|
625
|
+
"name": "param",
|
|
626
|
+
"text": "fromIndex The array index at which to begin searching backward. If fromIndex is omitted, the search starts at the last index in the array."
|
|
627
|
+
}
|
|
628
|
+
],
|
|
629
|
+
"docs": "Returns the index of the last occurrence of a specified value in an array, or -1 if it is not present.",
|
|
630
|
+
"complexTypes": [
|
|
631
|
+
"T"
|
|
632
|
+
],
|
|
633
|
+
"slug": "lastindexof"
|
|
634
|
+
},
|
|
635
|
+
{
|
|
636
|
+
"name": "every",
|
|
637
|
+
"signature": "<S extends T>(predicate: (value: T, index: number, array: T[]) => value is S, thisArg?: any) => this is S[]",
|
|
638
|
+
"parameters": [
|
|
639
|
+
{
|
|
640
|
+
"name": "predicate",
|
|
641
|
+
"docs": "A function that accepts up to three arguments. The every method calls\r\nthe predicate function for each element in the array until the predicate returns a value\r\nwhich is coercible to the Boolean value false, or until the end of the array.",
|
|
642
|
+
"type": "(value: T, index: number, array: T[]) => value is S"
|
|
643
|
+
},
|
|
644
|
+
{
|
|
645
|
+
"name": "thisArg",
|
|
646
|
+
"docs": "An object to which the this keyword can refer in the predicate function.\r\nIf thisArg is omitted, undefined is used as the this value.",
|
|
647
|
+
"type": "any"
|
|
648
|
+
}
|
|
649
|
+
],
|
|
650
|
+
"returns": "boolean",
|
|
651
|
+
"tags": [
|
|
652
|
+
{
|
|
653
|
+
"name": "param",
|
|
654
|
+
"text": "predicate A function that accepts up to three arguments. The every method calls\r\nthe predicate function for each element in the array until the predicate returns a value\r\nwhich is coercible to the Boolean value false, or until the end of the array."
|
|
655
|
+
},
|
|
656
|
+
{
|
|
657
|
+
"name": "param",
|
|
658
|
+
"text": "thisArg An object to which the this keyword can refer in the predicate function.\r\nIf thisArg is omitted, undefined is used as the this value."
|
|
659
|
+
}
|
|
660
|
+
],
|
|
661
|
+
"docs": "Determines whether all the members of an array satisfy the specified test.",
|
|
662
|
+
"complexTypes": [
|
|
663
|
+
"T",
|
|
664
|
+
"S"
|
|
665
|
+
],
|
|
666
|
+
"slug": "every"
|
|
667
|
+
},
|
|
668
|
+
{
|
|
669
|
+
"name": "every",
|
|
670
|
+
"signature": "(predicate: (value: T, index: number, array: T[]) => unknown, thisArg?: any) => boolean",
|
|
671
|
+
"parameters": [
|
|
672
|
+
{
|
|
673
|
+
"name": "predicate",
|
|
674
|
+
"docs": "A function that accepts up to three arguments. The every method calls\r\nthe predicate function for each element in the array until the predicate returns a value\r\nwhich is coercible to the Boolean value false, or until the end of the array.",
|
|
675
|
+
"type": "(value: T, index: number, array: T[]) => unknown"
|
|
676
|
+
},
|
|
677
|
+
{
|
|
678
|
+
"name": "thisArg",
|
|
679
|
+
"docs": "An object to which the this keyword can refer in the predicate function.\r\nIf thisArg is omitted, undefined is used as the this value.",
|
|
680
|
+
"type": "any"
|
|
681
|
+
}
|
|
682
|
+
],
|
|
683
|
+
"returns": "boolean",
|
|
684
|
+
"tags": [
|
|
685
|
+
{
|
|
686
|
+
"name": "param",
|
|
687
|
+
"text": "predicate A function that accepts up to three arguments. The every method calls\r\nthe predicate function for each element in the array until the predicate returns a value\r\nwhich is coercible to the Boolean value false, or until the end of the array."
|
|
688
|
+
},
|
|
689
|
+
{
|
|
690
|
+
"name": "param",
|
|
691
|
+
"text": "thisArg An object to which the this keyword can refer in the predicate function.\r\nIf thisArg is omitted, undefined is used as the this value."
|
|
692
|
+
}
|
|
693
|
+
],
|
|
694
|
+
"docs": "Determines whether all the members of an array satisfy the specified test.",
|
|
695
|
+
"complexTypes": [
|
|
696
|
+
"T"
|
|
697
|
+
],
|
|
698
|
+
"slug": "every"
|
|
699
|
+
},
|
|
700
|
+
{
|
|
701
|
+
"name": "some",
|
|
702
|
+
"signature": "(predicate: (value: T, index: number, array: T[]) => unknown, thisArg?: any) => boolean",
|
|
703
|
+
"parameters": [
|
|
704
|
+
{
|
|
705
|
+
"name": "predicate",
|
|
706
|
+
"docs": "A function that accepts up to three arguments. The some method calls\r\nthe predicate function for each element in the array until the predicate returns a value\r\nwhich is coercible to the Boolean value true, or until the end of the array.",
|
|
707
|
+
"type": "(value: T, index: number, array: T[]) => unknown"
|
|
708
|
+
},
|
|
709
|
+
{
|
|
710
|
+
"name": "thisArg",
|
|
711
|
+
"docs": "An object to which the this keyword can refer in the predicate function.\r\nIf thisArg is omitted, undefined is used as the this value.",
|
|
712
|
+
"type": "any"
|
|
713
|
+
}
|
|
714
|
+
],
|
|
715
|
+
"returns": "boolean",
|
|
716
|
+
"tags": [
|
|
717
|
+
{
|
|
718
|
+
"name": "param",
|
|
719
|
+
"text": "predicate A function that accepts up to three arguments. The some method calls\r\nthe predicate function for each element in the array until the predicate returns a value\r\nwhich is coercible to the Boolean value true, or until the end of the array."
|
|
720
|
+
},
|
|
721
|
+
{
|
|
722
|
+
"name": "param",
|
|
723
|
+
"text": "thisArg An object to which the this keyword can refer in the predicate function.\r\nIf thisArg is omitted, undefined is used as the this value."
|
|
724
|
+
}
|
|
725
|
+
],
|
|
726
|
+
"docs": "Determines whether the specified callback function returns true for any element of an array.",
|
|
727
|
+
"complexTypes": [
|
|
728
|
+
"T"
|
|
729
|
+
],
|
|
730
|
+
"slug": "some"
|
|
731
|
+
},
|
|
732
|
+
{
|
|
733
|
+
"name": "forEach",
|
|
734
|
+
"signature": "(callbackfn: (value: T, index: number, array: T[]) => void, thisArg?: any) => void",
|
|
735
|
+
"parameters": [
|
|
736
|
+
{
|
|
737
|
+
"name": "callbackfn",
|
|
738
|
+
"docs": "A function that accepts up to three arguments. forEach calls the callbackfn function one time for each element in the array.",
|
|
739
|
+
"type": "(value: T, index: number, array: T[]) => void"
|
|
740
|
+
},
|
|
741
|
+
{
|
|
742
|
+
"name": "thisArg",
|
|
743
|
+
"docs": "An object to which the this keyword can refer in the callbackfn function. If thisArg is omitted, undefined is used as the this value.",
|
|
744
|
+
"type": "any"
|
|
745
|
+
}
|
|
746
|
+
],
|
|
747
|
+
"returns": "void",
|
|
748
|
+
"tags": [
|
|
749
|
+
{
|
|
750
|
+
"name": "param",
|
|
751
|
+
"text": "callbackfn A function that accepts up to three arguments. forEach calls the callbackfn function one time for each element in the array."
|
|
752
|
+
},
|
|
753
|
+
{
|
|
754
|
+
"name": "param",
|
|
755
|
+
"text": "thisArg An object to which the this keyword can refer in the callbackfn function. If thisArg is omitted, undefined is used as the this value."
|
|
756
|
+
}
|
|
757
|
+
],
|
|
758
|
+
"docs": "Performs the specified action for each element in an array.",
|
|
759
|
+
"complexTypes": [
|
|
760
|
+
"T"
|
|
761
|
+
],
|
|
762
|
+
"slug": "foreach"
|
|
763
|
+
},
|
|
764
|
+
{
|
|
765
|
+
"name": "map",
|
|
766
|
+
"signature": "<U>(callbackfn: (value: T, index: number, array: T[]) => U, thisArg?: any) => U[]",
|
|
767
|
+
"parameters": [
|
|
768
|
+
{
|
|
769
|
+
"name": "callbackfn",
|
|
770
|
+
"docs": "A function that accepts up to three arguments. The map method calls the callbackfn function one time for each element in the array.",
|
|
771
|
+
"type": "(value: T, index: number, array: T[]) => U"
|
|
772
|
+
},
|
|
773
|
+
{
|
|
774
|
+
"name": "thisArg",
|
|
775
|
+
"docs": "An object to which the this keyword can refer in the callbackfn function. If thisArg is omitted, undefined is used as the this value.",
|
|
776
|
+
"type": "any"
|
|
777
|
+
}
|
|
778
|
+
],
|
|
779
|
+
"returns": "U[]",
|
|
780
|
+
"tags": [
|
|
781
|
+
{
|
|
782
|
+
"name": "param",
|
|
783
|
+
"text": "callbackfn A function that accepts up to three arguments. The map method calls the callbackfn function one time for each element in the array."
|
|
784
|
+
},
|
|
785
|
+
{
|
|
786
|
+
"name": "param",
|
|
787
|
+
"text": "thisArg An object to which the this keyword can refer in the callbackfn function. If thisArg is omitted, undefined is used as the this value."
|
|
788
|
+
}
|
|
789
|
+
],
|
|
790
|
+
"docs": "Calls a defined callback function on each element of an array, and returns an array that contains the results.",
|
|
791
|
+
"complexTypes": [
|
|
792
|
+
"U",
|
|
793
|
+
"T"
|
|
794
|
+
],
|
|
795
|
+
"slug": "map"
|
|
796
|
+
},
|
|
797
|
+
{
|
|
798
|
+
"name": "filter",
|
|
799
|
+
"signature": "<S extends T>(predicate: (value: T, index: number, array: T[]) => value is S, thisArg?: any) => S[]",
|
|
800
|
+
"parameters": [
|
|
801
|
+
{
|
|
802
|
+
"name": "predicate",
|
|
803
|
+
"docs": "A function that accepts up to three arguments. The filter method calls the predicate function one time for each element in the array.",
|
|
804
|
+
"type": "(value: T, index: number, array: T[]) => value is S"
|
|
805
|
+
},
|
|
806
|
+
{
|
|
807
|
+
"name": "thisArg",
|
|
808
|
+
"docs": "An object to which the this keyword can refer in the predicate function. If thisArg is omitted, undefined is used as the this value.",
|
|
809
|
+
"type": "any"
|
|
810
|
+
}
|
|
811
|
+
],
|
|
812
|
+
"returns": "S[]",
|
|
813
|
+
"tags": [
|
|
814
|
+
{
|
|
815
|
+
"name": "param",
|
|
816
|
+
"text": "predicate A function that accepts up to three arguments. The filter method calls the predicate function one time for each element in the array."
|
|
817
|
+
},
|
|
818
|
+
{
|
|
819
|
+
"name": "param",
|
|
820
|
+
"text": "thisArg An object to which the this keyword can refer in the predicate function. If thisArg is omitted, undefined is used as the this value."
|
|
821
|
+
}
|
|
822
|
+
],
|
|
823
|
+
"docs": "Returns the elements of an array that meet the condition specified in a callback function.",
|
|
824
|
+
"complexTypes": [
|
|
825
|
+
"S",
|
|
826
|
+
"T"
|
|
827
|
+
],
|
|
828
|
+
"slug": "filter"
|
|
829
|
+
},
|
|
830
|
+
{
|
|
831
|
+
"name": "filter",
|
|
832
|
+
"signature": "(predicate: (value: T, index: number, array: T[]) => unknown, thisArg?: any) => T[]",
|
|
833
|
+
"parameters": [
|
|
834
|
+
{
|
|
835
|
+
"name": "predicate",
|
|
836
|
+
"docs": "A function that accepts up to three arguments. The filter method calls the predicate function one time for each element in the array.",
|
|
837
|
+
"type": "(value: T, index: number, array: T[]) => unknown"
|
|
838
|
+
},
|
|
839
|
+
{
|
|
840
|
+
"name": "thisArg",
|
|
841
|
+
"docs": "An object to which the this keyword can refer in the predicate function. If thisArg is omitted, undefined is used as the this value.",
|
|
842
|
+
"type": "any"
|
|
843
|
+
}
|
|
844
|
+
],
|
|
845
|
+
"returns": "T[]",
|
|
846
|
+
"tags": [
|
|
847
|
+
{
|
|
848
|
+
"name": "param",
|
|
849
|
+
"text": "predicate A function that accepts up to three arguments. The filter method calls the predicate function one time for each element in the array."
|
|
850
|
+
},
|
|
851
|
+
{
|
|
852
|
+
"name": "param",
|
|
853
|
+
"text": "thisArg An object to which the this keyword can refer in the predicate function. If thisArg is omitted, undefined is used as the this value."
|
|
854
|
+
}
|
|
855
|
+
],
|
|
856
|
+
"docs": "Returns the elements of an array that meet the condition specified in a callback function.",
|
|
857
|
+
"complexTypes": [
|
|
858
|
+
"T"
|
|
859
|
+
],
|
|
860
|
+
"slug": "filter"
|
|
861
|
+
},
|
|
862
|
+
{
|
|
863
|
+
"name": "reduce",
|
|
864
|
+
"signature": "(callbackfn: (previousValue: T, currentValue: T, currentIndex: number, array: T[]) => T) => T",
|
|
865
|
+
"parameters": [
|
|
866
|
+
{
|
|
867
|
+
"name": "callbackfn",
|
|
868
|
+
"docs": "A function that accepts up to four arguments. The reduce method calls the callbackfn function one time for each element in the array.",
|
|
869
|
+
"type": "(previousValue: T, currentValue: T, currentIndex: number, array: T[]) => T"
|
|
870
|
+
}
|
|
871
|
+
],
|
|
872
|
+
"returns": "T",
|
|
873
|
+
"tags": [
|
|
874
|
+
{
|
|
875
|
+
"name": "param",
|
|
876
|
+
"text": "callbackfn A function that accepts up to four arguments. The reduce method calls the callbackfn function one time for each element in the array."
|
|
877
|
+
},
|
|
878
|
+
{
|
|
879
|
+
"name": "param",
|
|
880
|
+
"text": "initialValue If initialValue is specified, it is used as the initial value to start the accumulation. The first call to the callbackfn function provides this value as an argument instead of an array value."
|
|
881
|
+
}
|
|
882
|
+
],
|
|
883
|
+
"docs": "Calls the specified callback function for all the elements in an array. The return value of the callback function is the accumulated result, and is provided as an argument in the next call to the callback function.",
|
|
884
|
+
"complexTypes": [
|
|
885
|
+
"T"
|
|
886
|
+
],
|
|
887
|
+
"slug": "reduce"
|
|
888
|
+
},
|
|
889
|
+
{
|
|
890
|
+
"name": "reduce",
|
|
891
|
+
"signature": "(callbackfn: (previousValue: T, currentValue: T, currentIndex: number, array: T[]) => T, initialValue: T) => T",
|
|
892
|
+
"parameters": [
|
|
893
|
+
{
|
|
894
|
+
"name": "callbackfn",
|
|
895
|
+
"docs": "",
|
|
896
|
+
"type": "(previousValue: T, currentValue: T, currentIndex: number, array: T[]) => T"
|
|
897
|
+
},
|
|
898
|
+
{
|
|
899
|
+
"name": "initialValue",
|
|
900
|
+
"docs": "",
|
|
901
|
+
"type": "T"
|
|
902
|
+
}
|
|
903
|
+
],
|
|
904
|
+
"returns": "T",
|
|
905
|
+
"tags": [],
|
|
906
|
+
"docs": "",
|
|
907
|
+
"complexTypes": [
|
|
908
|
+
"T"
|
|
909
|
+
],
|
|
910
|
+
"slug": "reduce"
|
|
911
|
+
},
|
|
912
|
+
{
|
|
913
|
+
"name": "reduce",
|
|
914
|
+
"signature": "<U>(callbackfn: (previousValue: U, currentValue: T, currentIndex: number, array: T[]) => U, initialValue: U) => U",
|
|
915
|
+
"parameters": [
|
|
916
|
+
{
|
|
917
|
+
"name": "callbackfn",
|
|
918
|
+
"docs": "A function that accepts up to four arguments. The reduce method calls the callbackfn function one time for each element in the array.",
|
|
919
|
+
"type": "(previousValue: U, currentValue: T, currentIndex: number, array: T[]) => U"
|
|
920
|
+
},
|
|
921
|
+
{
|
|
922
|
+
"name": "initialValue",
|
|
923
|
+
"docs": "If initialValue is specified, it is used as the initial value to start the accumulation. The first call to the callbackfn function provides this value as an argument instead of an array value.",
|
|
924
|
+
"type": "U"
|
|
925
|
+
}
|
|
926
|
+
],
|
|
927
|
+
"returns": "U",
|
|
928
|
+
"tags": [
|
|
929
|
+
{
|
|
930
|
+
"name": "param",
|
|
931
|
+
"text": "callbackfn A function that accepts up to four arguments. The reduce method calls the callbackfn function one time for each element in the array."
|
|
932
|
+
},
|
|
933
|
+
{
|
|
934
|
+
"name": "param",
|
|
935
|
+
"text": "initialValue If initialValue is specified, it is used as the initial value to start the accumulation. The first call to the callbackfn function provides this value as an argument instead of an array value."
|
|
936
|
+
}
|
|
937
|
+
],
|
|
938
|
+
"docs": "Calls the specified callback function for all the elements in an array. The return value of the callback function is the accumulated result, and is provided as an argument in the next call to the callback function.",
|
|
939
|
+
"complexTypes": [
|
|
940
|
+
"U",
|
|
941
|
+
"T"
|
|
942
|
+
],
|
|
943
|
+
"slug": "reduce"
|
|
944
|
+
},
|
|
945
|
+
{
|
|
946
|
+
"name": "reduceRight",
|
|
947
|
+
"signature": "(callbackfn: (previousValue: T, currentValue: T, currentIndex: number, array: T[]) => T) => T",
|
|
948
|
+
"parameters": [
|
|
949
|
+
{
|
|
950
|
+
"name": "callbackfn",
|
|
951
|
+
"docs": "A function that accepts up to four arguments. The reduceRight method calls the callbackfn function one time for each element in the array.",
|
|
952
|
+
"type": "(previousValue: T, currentValue: T, currentIndex: number, array: T[]) => T"
|
|
953
|
+
}
|
|
954
|
+
],
|
|
955
|
+
"returns": "T",
|
|
956
|
+
"tags": [
|
|
957
|
+
{
|
|
958
|
+
"name": "param",
|
|
959
|
+
"text": "callbackfn A function that accepts up to four arguments. The reduceRight method calls the callbackfn function one time for each element in the array."
|
|
960
|
+
},
|
|
961
|
+
{
|
|
962
|
+
"name": "param",
|
|
963
|
+
"text": "initialValue If initialValue is specified, it is used as the initial value to start the accumulation. The first call to the callbackfn function provides this value as an argument instead of an array value."
|
|
964
|
+
}
|
|
965
|
+
],
|
|
966
|
+
"docs": "Calls the specified callback function for all the elements in an array, in descending order. The return value of the callback function is the accumulated result, and is provided as an argument in the next call to the callback function.",
|
|
967
|
+
"complexTypes": [
|
|
968
|
+
"T"
|
|
969
|
+
],
|
|
970
|
+
"slug": "reduceright"
|
|
971
|
+
},
|
|
972
|
+
{
|
|
973
|
+
"name": "reduceRight",
|
|
974
|
+
"signature": "(callbackfn: (previousValue: T, currentValue: T, currentIndex: number, array: T[]) => T, initialValue: T) => T",
|
|
975
|
+
"parameters": [
|
|
976
|
+
{
|
|
977
|
+
"name": "callbackfn",
|
|
978
|
+
"docs": "",
|
|
979
|
+
"type": "(previousValue: T, currentValue: T, currentIndex: number, array: T[]) => T"
|
|
980
|
+
},
|
|
981
|
+
{
|
|
982
|
+
"name": "initialValue",
|
|
983
|
+
"docs": "",
|
|
984
|
+
"type": "T"
|
|
985
|
+
}
|
|
986
|
+
],
|
|
987
|
+
"returns": "T",
|
|
988
|
+
"tags": [],
|
|
989
|
+
"docs": "",
|
|
990
|
+
"complexTypes": [
|
|
991
|
+
"T"
|
|
992
|
+
],
|
|
993
|
+
"slug": "reduceright"
|
|
994
|
+
},
|
|
995
|
+
{
|
|
996
|
+
"name": "reduceRight",
|
|
997
|
+
"signature": "<U>(callbackfn: (previousValue: U, currentValue: T, currentIndex: number, array: T[]) => U, initialValue: U) => U",
|
|
998
|
+
"parameters": [
|
|
999
|
+
{
|
|
1000
|
+
"name": "callbackfn",
|
|
1001
|
+
"docs": "A function that accepts up to four arguments. The reduceRight method calls the callbackfn function one time for each element in the array.",
|
|
1002
|
+
"type": "(previousValue: U, currentValue: T, currentIndex: number, array: T[]) => U"
|
|
1003
|
+
},
|
|
1004
|
+
{
|
|
1005
|
+
"name": "initialValue",
|
|
1006
|
+
"docs": "If initialValue is specified, it is used as the initial value to start the accumulation. The first call to the callbackfn function provides this value as an argument instead of an array value.",
|
|
1007
|
+
"type": "U"
|
|
1008
|
+
}
|
|
1009
|
+
],
|
|
1010
|
+
"returns": "U",
|
|
1011
|
+
"tags": [
|
|
1012
|
+
{
|
|
1013
|
+
"name": "param",
|
|
1014
|
+
"text": "callbackfn A function that accepts up to four arguments. The reduceRight method calls the callbackfn function one time for each element in the array."
|
|
1015
|
+
},
|
|
1016
|
+
{
|
|
1017
|
+
"name": "param",
|
|
1018
|
+
"text": "initialValue If initialValue is specified, it is used as the initial value to start the accumulation. The first call to the callbackfn function provides this value as an argument instead of an array value."
|
|
1019
|
+
}
|
|
1020
|
+
],
|
|
1021
|
+
"docs": "Calls the specified callback function for all the elements in an array, in descending order. The return value of the callback function is the accumulated result, and is provided as an argument in the next call to the callback function.",
|
|
1022
|
+
"complexTypes": [
|
|
1023
|
+
"U",
|
|
1024
|
+
"T"
|
|
1025
|
+
],
|
|
1026
|
+
"slug": "reduceright"
|
|
1027
|
+
}
|
|
1028
|
+
],
|
|
1029
|
+
"properties": [
|
|
1030
|
+
{
|
|
1031
|
+
"name": "length",
|
|
1032
|
+
"tags": [],
|
|
1033
|
+
"docs": "Gets or sets the length of the array. This is a number one higher than the highest index in the array.",
|
|
1034
|
+
"complexTypes": [],
|
|
1035
|
+
"type": "number"
|
|
1036
|
+
}
|
|
1037
|
+
]
|
|
1038
|
+
},
|
|
1039
|
+
{
|
|
1040
|
+
"name": "ConcatArray",
|
|
1041
|
+
"slug": "concatarray",
|
|
1042
|
+
"docs": "",
|
|
1043
|
+
"tags": [],
|
|
1044
|
+
"methods": [
|
|
1045
|
+
{
|
|
1046
|
+
"name": "join",
|
|
1047
|
+
"signature": "(separator?: string | undefined) => string",
|
|
1048
|
+
"parameters": [
|
|
1049
|
+
{
|
|
1050
|
+
"name": "separator",
|
|
1051
|
+
"docs": "",
|
|
1052
|
+
"type": "string | undefined"
|
|
1053
|
+
}
|
|
1054
|
+
],
|
|
1055
|
+
"returns": "string",
|
|
1056
|
+
"tags": [],
|
|
1057
|
+
"docs": "",
|
|
1058
|
+
"complexTypes": [],
|
|
1059
|
+
"slug": "join"
|
|
1060
|
+
},
|
|
1061
|
+
{
|
|
1062
|
+
"name": "slice",
|
|
1063
|
+
"signature": "(start?: number | undefined, end?: number | undefined) => T[]",
|
|
1064
|
+
"parameters": [
|
|
1065
|
+
{
|
|
1066
|
+
"name": "start",
|
|
1067
|
+
"docs": "",
|
|
1068
|
+
"type": "number | undefined"
|
|
1069
|
+
},
|
|
1070
|
+
{
|
|
1071
|
+
"name": "end",
|
|
1072
|
+
"docs": "",
|
|
1073
|
+
"type": "number | undefined"
|
|
1074
|
+
}
|
|
1075
|
+
],
|
|
1076
|
+
"returns": "T[]",
|
|
1077
|
+
"tags": [],
|
|
1078
|
+
"docs": "",
|
|
1079
|
+
"complexTypes": [
|
|
1080
|
+
"T"
|
|
1081
|
+
],
|
|
1082
|
+
"slug": "slice"
|
|
1083
|
+
}
|
|
1084
|
+
],
|
|
1085
|
+
"properties": [
|
|
1086
|
+
{
|
|
1087
|
+
"name": "length",
|
|
1088
|
+
"tags": [],
|
|
1089
|
+
"docs": "",
|
|
1090
|
+
"complexTypes": [],
|
|
1091
|
+
"type": "number"
|
|
1092
|
+
}
|
|
1093
|
+
]
|
|
1094
|
+
},
|
|
1095
|
+
{
|
|
1096
|
+
"name": "ReceiptFormatting",
|
|
1097
|
+
"slug": "receiptformatting",
|
|
1098
|
+
"docs": "",
|
|
1099
|
+
"tags": [],
|
|
1100
|
+
"methods": [],
|
|
1101
|
+
"properties": [
|
|
1102
|
+
{
|
|
1103
|
+
"name": "headerSize",
|
|
1104
|
+
"tags": [],
|
|
1105
|
+
"docs": "",
|
|
1106
|
+
"complexTypes": [],
|
|
1107
|
+
"type": "1 | 2 | 4 | 3 | 'normal' | 'large' | 'xlarge' | undefined"
|
|
1108
|
+
},
|
|
1109
|
+
{
|
|
1110
|
+
"name": "itemSize",
|
|
1111
|
+
"tags": [],
|
|
1112
|
+
"docs": "",
|
|
1113
|
+
"complexTypes": [],
|
|
1114
|
+
"type": "1 | 2 | 4 | 3 | 'normal' | 'large' | 'xlarge' | undefined"
|
|
1115
|
+
},
|
|
1116
|
+
{
|
|
1117
|
+
"name": "itemBold",
|
|
1118
|
+
"tags": [],
|
|
1119
|
+
"docs": "",
|
|
1120
|
+
"complexTypes": [],
|
|
1121
|
+
"type": "boolean | undefined"
|
|
1122
|
+
},
|
|
1123
|
+
{
|
|
1124
|
+
"name": "totalSize",
|
|
1125
|
+
"tags": [],
|
|
1126
|
+
"docs": "",
|
|
1127
|
+
"complexTypes": [],
|
|
1128
|
+
"type": "1 | 2 | 4 | 3 | 'normal' | 'large' | 'xlarge' | undefined"
|
|
1129
|
+
},
|
|
1130
|
+
{
|
|
1131
|
+
"name": "totalBold",
|
|
1132
|
+
"tags": [],
|
|
1133
|
+
"docs": "",
|
|
1134
|
+
"complexTypes": [],
|
|
1135
|
+
"type": "boolean | undefined"
|
|
1136
|
+
},
|
|
1137
|
+
{
|
|
1138
|
+
"name": "footerSize",
|
|
1139
|
+
"tags": [],
|
|
1140
|
+
"docs": "",
|
|
1141
|
+
"complexTypes": [],
|
|
1142
|
+
"type": "1 | 2 | 4 | 3 | 'normal' | 'large' | 'xlarge' | undefined"
|
|
224
1143
|
}
|
|
225
1144
|
]
|
|
226
1145
|
}
|
|
227
1146
|
],
|
|
1147
|
+
"enums": [],
|
|
1148
|
+
"typeAliases": [],
|
|
228
1149
|
"pluginConfigs": []
|
|
229
1150
|
}
|