node-pagefind 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/cli.d.ts CHANGED
@@ -1,5 +1,4 @@
1
1
  #!/usr/bin/env node
2
- import type { PagefindResultData } from './types.js';
3
2
  declare const pagefindCLI: import("cli-forge").CLI<{
4
3
  unmatched: string[];
5
4
  '--'?: string[];
@@ -9,6 +8,10 @@ declare const pagefindCLI: import("cli-forge").CLI<{
9
8
  path?: string;
10
9
  } & {} & {
11
10
  cachePath?: string;
11
+ } & {} & {
12
+ verbose?: boolean;
13
+ } & {} & {
14
+ skipCache?: boolean;
12
15
  } & {}, void, {
13
16
  search: import("cli-forge").CLI<{
14
17
  unmatched: string[];
@@ -19,6 +22,10 @@ declare const pagefindCLI: import("cli-forge").CLI<{
19
22
  path?: string;
20
23
  } & {} & {
21
24
  cachePath?: string;
25
+ } & {} & {
26
+ verbose?: boolean;
27
+ } & {} & {
28
+ skipCache?: boolean;
22
29
  } & {} & {
23
30
  query?: string;
24
31
  } & {} & {
@@ -27,11 +34,13 @@ declare const pagefindCLI: import("cli-forge").CLI<{
27
34
  excerpt?: boolean;
28
35
  } & {} & {
29
36
  limit?: number;
37
+ } & {} & {
38
+ minScore?: number;
30
39
  } & {}, Promise<{
31
40
  query: string;
32
41
  results: {
33
42
  score: number;
34
- data: PagefindResultData;
43
+ data: import("./types.js").PagefindResultData;
35
44
  }[];
36
45
  }>, {}, import("cli-forge").CLI<{
37
46
  unmatched: string[];
@@ -42,6 +51,10 @@ declare const pagefindCLI: import("cli-forge").CLI<{
42
51
  path?: string;
43
52
  } & {} & {
44
53
  cachePath?: string;
54
+ } & {} & {
55
+ verbose?: boolean;
56
+ } & {} & {
57
+ skipCache?: boolean;
45
58
  } & {}, any, {}, any>>;
46
59
  } & {
47
60
  filters: import("cli-forge").CLI<{
@@ -53,6 +66,10 @@ declare const pagefindCLI: import("cli-forge").CLI<{
53
66
  path?: string;
54
67
  } & {} & {
55
68
  cachePath?: string;
69
+ } & {} & {
70
+ verbose?: boolean;
71
+ } & {} & {
72
+ skipCache?: boolean;
56
73
  } & {}, Promise<import("./types.js").PagefindFilterMap>, {
57
74
  search: import("cli-forge").CLI<{
58
75
  unmatched: string[];
@@ -63,6 +80,10 @@ declare const pagefindCLI: import("cli-forge").CLI<{
63
80
  path?: string;
64
81
  } & {} & {
65
82
  cachePath?: string;
83
+ } & {} & {
84
+ verbose?: boolean;
85
+ } & {} & {
86
+ skipCache?: boolean;
66
87
  } & {} & {
67
88
  query?: string;
68
89
  } & {} & {
@@ -71,11 +92,13 @@ declare const pagefindCLI: import("cli-forge").CLI<{
71
92
  excerpt?: boolean;
72
93
  } & {} & {
73
94
  limit?: number;
95
+ } & {} & {
96
+ minScore?: number;
74
97
  } & {}, Promise<{
75
98
  query: string;
76
99
  results: {
77
100
  score: number;
78
- data: PagefindResultData;
101
+ data: import("./types.js").PagefindResultData;
79
102
  }[];
80
103
  }>, {}, import("cli-forge").CLI<{
81
104
  unmatched: string[];
@@ -86,6 +109,10 @@ declare const pagefindCLI: import("cli-forge").CLI<{
86
109
  path?: string;
87
110
  } & {} & {
88
111
  cachePath?: string;
112
+ } & {} & {
113
+ verbose?: boolean;
114
+ } & {} & {
115
+ skipCache?: boolean;
89
116
  } & {}, any, {}, any>>;
90
117
  }, import("cli-forge").CLI<{
91
118
  unmatched: string[];
@@ -96,6 +123,10 @@ declare const pagefindCLI: import("cli-forge").CLI<{
96
123
  path?: string;
97
124
  } & {} & {
98
125
  cachePath?: string;
126
+ } & {} & {
127
+ verbose?: boolean;
128
+ } & {} & {
129
+ skipCache?: boolean;
99
130
  } & {}, any, {
100
131
  search: import("cli-forge").CLI<{
101
132
  unmatched: string[];
@@ -106,6 +137,10 @@ declare const pagefindCLI: import("cli-forge").CLI<{
106
137
  path?: string;
107
138
  } & {} & {
108
139
  cachePath?: string;
140
+ } & {} & {
141
+ verbose?: boolean;
142
+ } & {} & {
143
+ skipCache?: boolean;
109
144
  } & {} & {
110
145
  query?: string;
111
146
  } & {} & {
@@ -114,11 +149,13 @@ declare const pagefindCLI: import("cli-forge").CLI<{
114
149
  excerpt?: boolean;
115
150
  } & {} & {
116
151
  limit?: number;
152
+ } & {} & {
153
+ minScore?: number;
117
154
  } & {}, Promise<{
118
155
  query: string;
119
156
  results: {
120
157
  score: number;
121
- data: PagefindResultData;
158
+ data: import("./types.js").PagefindResultData;
122
159
  }[];
123
160
  }>, {}, import("cli-forge").CLI<{
124
161
  unmatched: string[];
@@ -129,6 +166,10 @@ declare const pagefindCLI: import("cli-forge").CLI<{
129
166
  path?: string;
130
167
  } & {} & {
131
168
  cachePath?: string;
169
+ } & {} & {
170
+ verbose?: boolean;
171
+ } & {} & {
172
+ skipCache?: boolean;
132
173
  } & {}, any, {}, any>>;
133
174
  }, any>>;
134
175
  } & {
@@ -141,6 +182,10 @@ declare const pagefindCLI: import("cli-forge").CLI<{
141
182
  path?: string;
142
183
  } & {} & {
143
184
  cachePath?: string;
185
+ } & {} & {
186
+ verbose?: boolean;
187
+ } & {} & {
188
+ skipCache?: boolean;
144
189
  } & {}, Promise<{
145
190
  baseUrl: string;
146
191
  pagefindPath: string;
@@ -155,6 +200,10 @@ declare const pagefindCLI: import("cli-forge").CLI<{
155
200
  path?: string;
156
201
  } & {} & {
157
202
  cachePath?: string;
203
+ } & {} & {
204
+ verbose?: boolean;
205
+ } & {} & {
206
+ skipCache?: boolean;
158
207
  } & {} & {
159
208
  query?: string;
160
209
  } & {} & {
@@ -163,11 +212,13 @@ declare const pagefindCLI: import("cli-forge").CLI<{
163
212
  excerpt?: boolean;
164
213
  } & {} & {
165
214
  limit?: number;
215
+ } & {} & {
216
+ minScore?: number;
166
217
  } & {}, Promise<{
167
218
  query: string;
168
219
  results: {
169
220
  score: number;
170
- data: PagefindResultData;
221
+ data: import("./types.js").PagefindResultData;
171
222
  }[];
172
223
  }>, {}, import("cli-forge").CLI<{
173
224
  unmatched: string[];
@@ -178,6 +229,10 @@ declare const pagefindCLI: import("cli-forge").CLI<{
178
229
  path?: string;
179
230
  } & {} & {
180
231
  cachePath?: string;
232
+ } & {} & {
233
+ verbose?: boolean;
234
+ } & {} & {
235
+ skipCache?: boolean;
181
236
  } & {}, any, {}, any>>;
182
237
  } & {
183
238
  filters: import("cli-forge").CLI<{
@@ -189,6 +244,10 @@ declare const pagefindCLI: import("cli-forge").CLI<{
189
244
  path?: string;
190
245
  } & {} & {
191
246
  cachePath?: string;
247
+ } & {} & {
248
+ verbose?: boolean;
249
+ } & {} & {
250
+ skipCache?: boolean;
192
251
  } & {}, Promise<import("./types.js").PagefindFilterMap>, {
193
252
  search: import("cli-forge").CLI<{
194
253
  unmatched: string[];
@@ -199,6 +258,10 @@ declare const pagefindCLI: import("cli-forge").CLI<{
199
258
  path?: string;
200
259
  } & {} & {
201
260
  cachePath?: string;
261
+ } & {} & {
262
+ verbose?: boolean;
263
+ } & {} & {
264
+ skipCache?: boolean;
202
265
  } & {} & {
203
266
  query?: string;
204
267
  } & {} & {
@@ -207,11 +270,13 @@ declare const pagefindCLI: import("cli-forge").CLI<{
207
270
  excerpt?: boolean;
208
271
  } & {} & {
209
272
  limit?: number;
273
+ } & {} & {
274
+ minScore?: number;
210
275
  } & {}, Promise<{
211
276
  query: string;
212
277
  results: {
213
278
  score: number;
214
- data: PagefindResultData;
279
+ data: import("./types.js").PagefindResultData;
215
280
  }[];
216
281
  }>, {}, import("cli-forge").CLI<{
217
282
  unmatched: string[];
@@ -222,6 +287,10 @@ declare const pagefindCLI: import("cli-forge").CLI<{
222
287
  path?: string;
223
288
  } & {} & {
224
289
  cachePath?: string;
290
+ } & {} & {
291
+ verbose?: boolean;
292
+ } & {} & {
293
+ skipCache?: boolean;
225
294
  } & {}, any, {}, any>>;
226
295
  }, import("cli-forge").CLI<{
227
296
  unmatched: string[];
@@ -232,6 +301,10 @@ declare const pagefindCLI: import("cli-forge").CLI<{
232
301
  path?: string;
233
302
  } & {} & {
234
303
  cachePath?: string;
304
+ } & {} & {
305
+ verbose?: boolean;
306
+ } & {} & {
307
+ skipCache?: boolean;
235
308
  } & {}, any, {
236
309
  search: import("cli-forge").CLI<{
237
310
  unmatched: string[];
@@ -242,6 +315,10 @@ declare const pagefindCLI: import("cli-forge").CLI<{
242
315
  path?: string;
243
316
  } & {} & {
244
317
  cachePath?: string;
318
+ } & {} & {
319
+ verbose?: boolean;
320
+ } & {} & {
321
+ skipCache?: boolean;
245
322
  } & {} & {
246
323
  query?: string;
247
324
  } & {} & {
@@ -250,11 +327,13 @@ declare const pagefindCLI: import("cli-forge").CLI<{
250
327
  excerpt?: boolean;
251
328
  } & {} & {
252
329
  limit?: number;
330
+ } & {} & {
331
+ minScore?: number;
253
332
  } & {}, Promise<{
254
333
  query: string;
255
334
  results: {
256
335
  score: number;
257
- data: PagefindResultData;
336
+ data: import("./types.js").PagefindResultData;
258
337
  }[];
259
338
  }>, {}, import("cli-forge").CLI<{
260
339
  unmatched: string[];
@@ -265,6 +344,10 @@ declare const pagefindCLI: import("cli-forge").CLI<{
265
344
  path?: string;
266
345
  } & {} & {
267
346
  cachePath?: string;
347
+ } & {} & {
348
+ verbose?: boolean;
349
+ } & {} & {
350
+ skipCache?: boolean;
268
351
  } & {}, any, {}, any>>;
269
352
  }, any>>;
270
353
  }, import("cli-forge").CLI<{
@@ -276,6 +359,10 @@ declare const pagefindCLI: import("cli-forge").CLI<{
276
359
  path?: string;
277
360
  } & {} & {
278
361
  cachePath?: string;
362
+ } & {} & {
363
+ verbose?: boolean;
364
+ } & {} & {
365
+ skipCache?: boolean;
279
366
  } & {}, any, {
280
367
  search: import("cli-forge").CLI<{
281
368
  unmatched: string[];
@@ -286,6 +373,185 @@ declare const pagefindCLI: import("cli-forge").CLI<{
286
373
  path?: string;
287
374
  } & {} & {
288
375
  cachePath?: string;
376
+ } & {} & {
377
+ verbose?: boolean;
378
+ } & {} & {
379
+ skipCache?: boolean;
380
+ } & {} & {
381
+ query?: string;
382
+ } & {} & {
383
+ lang?: string;
384
+ } & {} & {
385
+ excerpt?: boolean;
386
+ } & {} & {
387
+ limit?: number;
388
+ } & {} & {
389
+ minScore?: number;
390
+ } & {}, Promise<{
391
+ query: string;
392
+ results: {
393
+ score: number;
394
+ data: import("./types.js").PagefindResultData;
395
+ }[];
396
+ }>, {}, import("cli-forge").CLI<{
397
+ unmatched: string[];
398
+ '--'?: string[];
399
+ } & {
400
+ url?: string;
401
+ } & {} & {
402
+ path?: string;
403
+ } & {} & {
404
+ cachePath?: string;
405
+ } & {} & {
406
+ verbose?: boolean;
407
+ } & {} & {
408
+ skipCache?: boolean;
409
+ } & {}, any, {}, any>>;
410
+ } & {
411
+ filters: import("cli-forge").CLI<{
412
+ unmatched: string[];
413
+ '--'?: string[];
414
+ } & {
415
+ url?: string;
416
+ } & {} & {
417
+ path?: string;
418
+ } & {} & {
419
+ cachePath?: string;
420
+ } & {} & {
421
+ verbose?: boolean;
422
+ } & {} & {
423
+ skipCache?: boolean;
424
+ } & {}, Promise<import("./types.js").PagefindFilterMap>, {
425
+ search: import("cli-forge").CLI<{
426
+ unmatched: string[];
427
+ '--'?: string[];
428
+ } & {
429
+ url?: string;
430
+ } & {} & {
431
+ path?: string;
432
+ } & {} & {
433
+ cachePath?: string;
434
+ } & {} & {
435
+ verbose?: boolean;
436
+ } & {} & {
437
+ skipCache?: boolean;
438
+ } & {} & {
439
+ query?: string;
440
+ } & {} & {
441
+ lang?: string;
442
+ } & {} & {
443
+ excerpt?: boolean;
444
+ } & {} & {
445
+ limit?: number;
446
+ } & {} & {
447
+ minScore?: number;
448
+ } & {}, Promise<{
449
+ query: string;
450
+ results: {
451
+ score: number;
452
+ data: import("./types.js").PagefindResultData;
453
+ }[];
454
+ }>, {}, import("cli-forge").CLI<{
455
+ unmatched: string[];
456
+ '--'?: string[];
457
+ } & {
458
+ url?: string;
459
+ } & {} & {
460
+ path?: string;
461
+ } & {} & {
462
+ cachePath?: string;
463
+ } & {} & {
464
+ verbose?: boolean;
465
+ } & {} & {
466
+ skipCache?: boolean;
467
+ } & {}, any, {}, any>>;
468
+ }, import("cli-forge").CLI<{
469
+ unmatched: string[];
470
+ '--'?: string[];
471
+ } & {
472
+ url?: string;
473
+ } & {} & {
474
+ path?: string;
475
+ } & {} & {
476
+ cachePath?: string;
477
+ } & {} & {
478
+ verbose?: boolean;
479
+ } & {} & {
480
+ skipCache?: boolean;
481
+ } & {}, any, {
482
+ search: import("cli-forge").CLI<{
483
+ unmatched: string[];
484
+ '--'?: string[];
485
+ } & {
486
+ url?: string;
487
+ } & {} & {
488
+ path?: string;
489
+ } & {} & {
490
+ cachePath?: string;
491
+ } & {} & {
492
+ verbose?: boolean;
493
+ } & {} & {
494
+ skipCache?: boolean;
495
+ } & {} & {
496
+ query?: string;
497
+ } & {} & {
498
+ lang?: string;
499
+ } & {} & {
500
+ excerpt?: boolean;
501
+ } & {} & {
502
+ limit?: number;
503
+ } & {} & {
504
+ minScore?: number;
505
+ } & {}, Promise<{
506
+ query: string;
507
+ results: {
508
+ score: number;
509
+ data: import("./types.js").PagefindResultData;
510
+ }[];
511
+ }>, {}, import("cli-forge").CLI<{
512
+ unmatched: string[];
513
+ '--'?: string[];
514
+ } & {
515
+ url?: string;
516
+ } & {} & {
517
+ path?: string;
518
+ } & {} & {
519
+ cachePath?: string;
520
+ } & {} & {
521
+ verbose?: boolean;
522
+ } & {} & {
523
+ skipCache?: boolean;
524
+ } & {}, any, {}, any>>;
525
+ }, any>>;
526
+ }, any>>;
527
+ } & {
528
+ "inspect-cache": import("cli-forge").CLI<{
529
+ unmatched: string[];
530
+ '--'?: string[];
531
+ } & {
532
+ url?: string;
533
+ } & {} & {
534
+ path?: string;
535
+ } & {} & {
536
+ cachePath?: string;
537
+ } & {} & {
538
+ verbose?: boolean;
539
+ } & {} & {
540
+ skipCache?: boolean;
541
+ } & {}, Promise<import("./pagefind.js").CacheInspection>, {
542
+ search: import("cli-forge").CLI<{
543
+ unmatched: string[];
544
+ '--'?: string[];
545
+ } & {
546
+ url?: string;
547
+ } & {} & {
548
+ path?: string;
549
+ } & {} & {
550
+ cachePath?: string;
551
+ } & {} & {
552
+ verbose?: boolean;
553
+ } & {} & {
554
+ skipCache?: boolean;
289
555
  } & {} & {
290
556
  query?: string;
291
557
  } & {} & {
@@ -294,11 +560,13 @@ declare const pagefindCLI: import("cli-forge").CLI<{
294
560
  excerpt?: boolean;
295
561
  } & {} & {
296
562
  limit?: number;
563
+ } & {} & {
564
+ minScore?: number;
297
565
  } & {}, Promise<{
298
566
  query: string;
299
567
  results: {
300
568
  score: number;
301
- data: PagefindResultData;
569
+ data: import("./types.js").PagefindResultData;
302
570
  }[];
303
571
  }>, {}, import("cli-forge").CLI<{
304
572
  unmatched: string[];
@@ -309,6 +577,10 @@ declare const pagefindCLI: import("cli-forge").CLI<{
309
577
  path?: string;
310
578
  } & {} & {
311
579
  cachePath?: string;
580
+ } & {} & {
581
+ verbose?: boolean;
582
+ } & {} & {
583
+ skipCache?: boolean;
312
584
  } & {}, any, {}, any>>;
313
585
  } & {
314
586
  filters: import("cli-forge").CLI<{
@@ -320,6 +592,10 @@ declare const pagefindCLI: import("cli-forge").CLI<{
320
592
  path?: string;
321
593
  } & {} & {
322
594
  cachePath?: string;
595
+ } & {} & {
596
+ verbose?: boolean;
597
+ } & {} & {
598
+ skipCache?: boolean;
323
599
  } & {}, Promise<import("./types.js").PagefindFilterMap>, {
324
600
  search: import("cli-forge").CLI<{
325
601
  unmatched: string[];
@@ -330,6 +606,10 @@ declare const pagefindCLI: import("cli-forge").CLI<{
330
606
  path?: string;
331
607
  } & {} & {
332
608
  cachePath?: string;
609
+ } & {} & {
610
+ verbose?: boolean;
611
+ } & {} & {
612
+ skipCache?: boolean;
333
613
  } & {} & {
334
614
  query?: string;
335
615
  } & {} & {
@@ -338,11 +618,13 @@ declare const pagefindCLI: import("cli-forge").CLI<{
338
618
  excerpt?: boolean;
339
619
  } & {} & {
340
620
  limit?: number;
621
+ } & {} & {
622
+ minScore?: number;
341
623
  } & {}, Promise<{
342
624
  query: string;
343
625
  results: {
344
626
  score: number;
345
- data: PagefindResultData;
627
+ data: import("./types.js").PagefindResultData;
346
628
  }[];
347
629
  }>, {}, import("cli-forge").CLI<{
348
630
  unmatched: string[];
@@ -353,6 +635,10 @@ declare const pagefindCLI: import("cli-forge").CLI<{
353
635
  path?: string;
354
636
  } & {} & {
355
637
  cachePath?: string;
638
+ } & {} & {
639
+ verbose?: boolean;
640
+ } & {} & {
641
+ skipCache?: boolean;
356
642
  } & {}, any, {}, any>>;
357
643
  }, import("cli-forge").CLI<{
358
644
  unmatched: string[];
@@ -363,6 +649,10 @@ declare const pagefindCLI: import("cli-forge").CLI<{
363
649
  path?: string;
364
650
  } & {} & {
365
651
  cachePath?: string;
652
+ } & {} & {
653
+ verbose?: boolean;
654
+ } & {} & {
655
+ skipCache?: boolean;
366
656
  } & {}, any, {
367
657
  search: import("cli-forge").CLI<{
368
658
  unmatched: string[];
@@ -373,6 +663,10 @@ declare const pagefindCLI: import("cli-forge").CLI<{
373
663
  path?: string;
374
664
  } & {} & {
375
665
  cachePath?: string;
666
+ } & {} & {
667
+ verbose?: boolean;
668
+ } & {} & {
669
+ skipCache?: boolean;
376
670
  } & {} & {
377
671
  query?: string;
378
672
  } & {} & {
@@ -381,11 +675,13 @@ declare const pagefindCLI: import("cli-forge").CLI<{
381
675
  excerpt?: boolean;
382
676
  } & {} & {
383
677
  limit?: number;
678
+ } & {} & {
679
+ minScore?: number;
384
680
  } & {}, Promise<{
385
681
  query: string;
386
682
  results: {
387
683
  score: number;
388
- data: PagefindResultData;
684
+ data: import("./types.js").PagefindResultData;
389
685
  }[];
390
686
  }>, {}, import("cli-forge").CLI<{
391
687
  unmatched: string[];
@@ -396,8 +692,889 @@ declare const pagefindCLI: import("cli-forge").CLI<{
396
692
  path?: string;
397
693
  } & {} & {
398
694
  cachePath?: string;
695
+ } & {} & {
696
+ verbose?: boolean;
697
+ } & {} & {
698
+ skipCache?: boolean;
399
699
  } & {}, any, {}, any>>;
400
700
  }, any>>;
701
+ } & {
702
+ info: import("cli-forge").CLI<{
703
+ unmatched: string[];
704
+ '--'?: string[];
705
+ } & {
706
+ url?: string;
707
+ } & {} & {
708
+ path?: string;
709
+ } & {} & {
710
+ cachePath?: string;
711
+ } & {} & {
712
+ verbose?: boolean;
713
+ } & {} & {
714
+ skipCache?: boolean;
715
+ } & {}, Promise<{
716
+ baseUrl: string;
717
+ pagefindPath: string;
718
+ initialized: boolean;
719
+ }>, {
720
+ search: import("cli-forge").CLI<{
721
+ unmatched: string[];
722
+ '--'?: string[];
723
+ } & {
724
+ url?: string;
725
+ } & {} & {
726
+ path?: string;
727
+ } & {} & {
728
+ cachePath?: string;
729
+ } & {} & {
730
+ verbose?: boolean;
731
+ } & {} & {
732
+ skipCache?: boolean;
733
+ } & {} & {
734
+ query?: string;
735
+ } & {} & {
736
+ lang?: string;
737
+ } & {} & {
738
+ excerpt?: boolean;
739
+ } & {} & {
740
+ limit?: number;
741
+ } & {} & {
742
+ minScore?: number;
743
+ } & {}, Promise<{
744
+ query: string;
745
+ results: {
746
+ score: number;
747
+ data: import("./types.js").PagefindResultData;
748
+ }[];
749
+ }>, {}, import("cli-forge").CLI<{
750
+ unmatched: string[];
751
+ '--'?: string[];
752
+ } & {
753
+ url?: string;
754
+ } & {} & {
755
+ path?: string;
756
+ } & {} & {
757
+ cachePath?: string;
758
+ } & {} & {
759
+ verbose?: boolean;
760
+ } & {} & {
761
+ skipCache?: boolean;
762
+ } & {}, any, {}, any>>;
763
+ } & {
764
+ filters: import("cli-forge").CLI<{
765
+ unmatched: string[];
766
+ '--'?: string[];
767
+ } & {
768
+ url?: string;
769
+ } & {} & {
770
+ path?: string;
771
+ } & {} & {
772
+ cachePath?: string;
773
+ } & {} & {
774
+ verbose?: boolean;
775
+ } & {} & {
776
+ skipCache?: boolean;
777
+ } & {}, Promise<import("./types.js").PagefindFilterMap>, {
778
+ search: import("cli-forge").CLI<{
779
+ unmatched: string[];
780
+ '--'?: string[];
781
+ } & {
782
+ url?: string;
783
+ } & {} & {
784
+ path?: string;
785
+ } & {} & {
786
+ cachePath?: string;
787
+ } & {} & {
788
+ verbose?: boolean;
789
+ } & {} & {
790
+ skipCache?: boolean;
791
+ } & {} & {
792
+ query?: string;
793
+ } & {} & {
794
+ lang?: string;
795
+ } & {} & {
796
+ excerpt?: boolean;
797
+ } & {} & {
798
+ limit?: number;
799
+ } & {} & {
800
+ minScore?: number;
801
+ } & {}, Promise<{
802
+ query: string;
803
+ results: {
804
+ score: number;
805
+ data: import("./types.js").PagefindResultData;
806
+ }[];
807
+ }>, {}, import("cli-forge").CLI<{
808
+ unmatched: string[];
809
+ '--'?: string[];
810
+ } & {
811
+ url?: string;
812
+ } & {} & {
813
+ path?: string;
814
+ } & {} & {
815
+ cachePath?: string;
816
+ } & {} & {
817
+ verbose?: boolean;
818
+ } & {} & {
819
+ skipCache?: boolean;
820
+ } & {}, any, {}, any>>;
821
+ }, import("cli-forge").CLI<{
822
+ unmatched: string[];
823
+ '--'?: string[];
824
+ } & {
825
+ url?: string;
826
+ } & {} & {
827
+ path?: string;
828
+ } & {} & {
829
+ cachePath?: string;
830
+ } & {} & {
831
+ verbose?: boolean;
832
+ } & {} & {
833
+ skipCache?: boolean;
834
+ } & {}, any, {
835
+ search: import("cli-forge").CLI<{
836
+ unmatched: string[];
837
+ '--'?: string[];
838
+ } & {
839
+ url?: string;
840
+ } & {} & {
841
+ path?: string;
842
+ } & {} & {
843
+ cachePath?: string;
844
+ } & {} & {
845
+ verbose?: boolean;
846
+ } & {} & {
847
+ skipCache?: boolean;
848
+ } & {} & {
849
+ query?: string;
850
+ } & {} & {
851
+ lang?: string;
852
+ } & {} & {
853
+ excerpt?: boolean;
854
+ } & {} & {
855
+ limit?: number;
856
+ } & {} & {
857
+ minScore?: number;
858
+ } & {}, Promise<{
859
+ query: string;
860
+ results: {
861
+ score: number;
862
+ data: import("./types.js").PagefindResultData;
863
+ }[];
864
+ }>, {}, import("cli-forge").CLI<{
865
+ unmatched: string[];
866
+ '--'?: string[];
867
+ } & {
868
+ url?: string;
869
+ } & {} & {
870
+ path?: string;
871
+ } & {} & {
872
+ cachePath?: string;
873
+ } & {} & {
874
+ verbose?: boolean;
875
+ } & {} & {
876
+ skipCache?: boolean;
877
+ } & {}, any, {}, any>>;
878
+ }, any>>;
879
+ }, import("cli-forge").CLI<{
880
+ unmatched: string[];
881
+ '--'?: string[];
882
+ } & {
883
+ url?: string;
884
+ } & {} & {
885
+ path?: string;
886
+ } & {} & {
887
+ cachePath?: string;
888
+ } & {} & {
889
+ verbose?: boolean;
890
+ } & {} & {
891
+ skipCache?: boolean;
892
+ } & {}, any, {
893
+ search: import("cli-forge").CLI<{
894
+ unmatched: string[];
895
+ '--'?: string[];
896
+ } & {
897
+ url?: string;
898
+ } & {} & {
899
+ path?: string;
900
+ } & {} & {
901
+ cachePath?: string;
902
+ } & {} & {
903
+ verbose?: boolean;
904
+ } & {} & {
905
+ skipCache?: boolean;
906
+ } & {} & {
907
+ query?: string;
908
+ } & {} & {
909
+ lang?: string;
910
+ } & {} & {
911
+ excerpt?: boolean;
912
+ } & {} & {
913
+ limit?: number;
914
+ } & {} & {
915
+ minScore?: number;
916
+ } & {}, Promise<{
917
+ query: string;
918
+ results: {
919
+ score: number;
920
+ data: import("./types.js").PagefindResultData;
921
+ }[];
922
+ }>, {}, import("cli-forge").CLI<{
923
+ unmatched: string[];
924
+ '--'?: string[];
925
+ } & {
926
+ url?: string;
927
+ } & {} & {
928
+ path?: string;
929
+ } & {} & {
930
+ cachePath?: string;
931
+ } & {} & {
932
+ verbose?: boolean;
933
+ } & {} & {
934
+ skipCache?: boolean;
935
+ } & {}, any, {}, any>>;
936
+ } & {
937
+ filters: import("cli-forge").CLI<{
938
+ unmatched: string[];
939
+ '--'?: string[];
940
+ } & {
941
+ url?: string;
942
+ } & {} & {
943
+ path?: string;
944
+ } & {} & {
945
+ cachePath?: string;
946
+ } & {} & {
947
+ verbose?: boolean;
948
+ } & {} & {
949
+ skipCache?: boolean;
950
+ } & {}, Promise<import("./types.js").PagefindFilterMap>, {
951
+ search: import("cli-forge").CLI<{
952
+ unmatched: string[];
953
+ '--'?: string[];
954
+ } & {
955
+ url?: string;
956
+ } & {} & {
957
+ path?: string;
958
+ } & {} & {
959
+ cachePath?: string;
960
+ } & {} & {
961
+ verbose?: boolean;
962
+ } & {} & {
963
+ skipCache?: boolean;
964
+ } & {} & {
965
+ query?: string;
966
+ } & {} & {
967
+ lang?: string;
968
+ } & {} & {
969
+ excerpt?: boolean;
970
+ } & {} & {
971
+ limit?: number;
972
+ } & {} & {
973
+ minScore?: number;
974
+ } & {}, Promise<{
975
+ query: string;
976
+ results: {
977
+ score: number;
978
+ data: import("./types.js").PagefindResultData;
979
+ }[];
980
+ }>, {}, import("cli-forge").CLI<{
981
+ unmatched: string[];
982
+ '--'?: string[];
983
+ } & {
984
+ url?: string;
985
+ } & {} & {
986
+ path?: string;
987
+ } & {} & {
988
+ cachePath?: string;
989
+ } & {} & {
990
+ verbose?: boolean;
991
+ } & {} & {
992
+ skipCache?: boolean;
993
+ } & {}, any, {}, any>>;
994
+ }, import("cli-forge").CLI<{
995
+ unmatched: string[];
996
+ '--'?: string[];
997
+ } & {
998
+ url?: string;
999
+ } & {} & {
1000
+ path?: string;
1001
+ } & {} & {
1002
+ cachePath?: string;
1003
+ } & {} & {
1004
+ verbose?: boolean;
1005
+ } & {} & {
1006
+ skipCache?: boolean;
1007
+ } & {}, any, {
1008
+ search: import("cli-forge").CLI<{
1009
+ unmatched: string[];
1010
+ '--'?: string[];
1011
+ } & {
1012
+ url?: string;
1013
+ } & {} & {
1014
+ path?: string;
1015
+ } & {} & {
1016
+ cachePath?: string;
1017
+ } & {} & {
1018
+ verbose?: boolean;
1019
+ } & {} & {
1020
+ skipCache?: boolean;
1021
+ } & {} & {
1022
+ query?: string;
1023
+ } & {} & {
1024
+ lang?: string;
1025
+ } & {} & {
1026
+ excerpt?: boolean;
1027
+ } & {} & {
1028
+ limit?: number;
1029
+ } & {} & {
1030
+ minScore?: number;
1031
+ } & {}, Promise<{
1032
+ query: string;
1033
+ results: {
1034
+ score: number;
1035
+ data: import("./types.js").PagefindResultData;
1036
+ }[];
1037
+ }>, {}, import("cli-forge").CLI<{
1038
+ unmatched: string[];
1039
+ '--'?: string[];
1040
+ } & {
1041
+ url?: string;
1042
+ } & {} & {
1043
+ path?: string;
1044
+ } & {} & {
1045
+ cachePath?: string;
1046
+ } & {} & {
1047
+ verbose?: boolean;
1048
+ } & {} & {
1049
+ skipCache?: boolean;
1050
+ } & {}, any, {}, any>>;
1051
+ }, any>>;
1052
+ }, any>>;
1053
+ }, import("cli-forge").CLI<{
1054
+ unmatched: string[];
1055
+ '--'?: string[];
1056
+ } & {
1057
+ url?: string;
1058
+ } & {} & {
1059
+ path?: string;
1060
+ } & {} & {
1061
+ cachePath?: string;
1062
+ } & {} & {
1063
+ verbose?: boolean;
1064
+ } & {} & {
1065
+ skipCache?: boolean;
1066
+ } & {}, any, {
1067
+ search: import("cli-forge").CLI<{
1068
+ unmatched: string[];
1069
+ '--'?: string[];
1070
+ } & {
1071
+ url?: string;
1072
+ } & {} & {
1073
+ path?: string;
1074
+ } & {} & {
1075
+ cachePath?: string;
1076
+ } & {} & {
1077
+ verbose?: boolean;
1078
+ } & {} & {
1079
+ skipCache?: boolean;
1080
+ } & {} & {
1081
+ query?: string;
1082
+ } & {} & {
1083
+ lang?: string;
1084
+ } & {} & {
1085
+ excerpt?: boolean;
1086
+ } & {} & {
1087
+ limit?: number;
1088
+ } & {} & {
1089
+ minScore?: number;
1090
+ } & {}, Promise<{
1091
+ query: string;
1092
+ results: {
1093
+ score: number;
1094
+ data: import("./types.js").PagefindResultData;
1095
+ }[];
1096
+ }>, {}, import("cli-forge").CLI<{
1097
+ unmatched: string[];
1098
+ '--'?: string[];
1099
+ } & {
1100
+ url?: string;
1101
+ } & {} & {
1102
+ path?: string;
1103
+ } & {} & {
1104
+ cachePath?: string;
1105
+ } & {} & {
1106
+ verbose?: boolean;
1107
+ } & {} & {
1108
+ skipCache?: boolean;
1109
+ } & {}, any, {}, any>>;
1110
+ } & {
1111
+ filters: import("cli-forge").CLI<{
1112
+ unmatched: string[];
1113
+ '--'?: string[];
1114
+ } & {
1115
+ url?: string;
1116
+ } & {} & {
1117
+ path?: string;
1118
+ } & {} & {
1119
+ cachePath?: string;
1120
+ } & {} & {
1121
+ verbose?: boolean;
1122
+ } & {} & {
1123
+ skipCache?: boolean;
1124
+ } & {}, Promise<import("./types.js").PagefindFilterMap>, {
1125
+ search: import("cli-forge").CLI<{
1126
+ unmatched: string[];
1127
+ '--'?: string[];
1128
+ } & {
1129
+ url?: string;
1130
+ } & {} & {
1131
+ path?: string;
1132
+ } & {} & {
1133
+ cachePath?: string;
1134
+ } & {} & {
1135
+ verbose?: boolean;
1136
+ } & {} & {
1137
+ skipCache?: boolean;
1138
+ } & {} & {
1139
+ query?: string;
1140
+ } & {} & {
1141
+ lang?: string;
1142
+ } & {} & {
1143
+ excerpt?: boolean;
1144
+ } & {} & {
1145
+ limit?: number;
1146
+ } & {} & {
1147
+ minScore?: number;
1148
+ } & {}, Promise<{
1149
+ query: string;
1150
+ results: {
1151
+ score: number;
1152
+ data: import("./types.js").PagefindResultData;
1153
+ }[];
1154
+ }>, {}, import("cli-forge").CLI<{
1155
+ unmatched: string[];
1156
+ '--'?: string[];
1157
+ } & {
1158
+ url?: string;
1159
+ } & {} & {
1160
+ path?: string;
1161
+ } & {} & {
1162
+ cachePath?: string;
1163
+ } & {} & {
1164
+ verbose?: boolean;
1165
+ } & {} & {
1166
+ skipCache?: boolean;
1167
+ } & {}, any, {}, any>>;
1168
+ }, import("cli-forge").CLI<{
1169
+ unmatched: string[];
1170
+ '--'?: string[];
1171
+ } & {
1172
+ url?: string;
1173
+ } & {} & {
1174
+ path?: string;
1175
+ } & {} & {
1176
+ cachePath?: string;
1177
+ } & {} & {
1178
+ verbose?: boolean;
1179
+ } & {} & {
1180
+ skipCache?: boolean;
1181
+ } & {}, any, {
1182
+ search: import("cli-forge").CLI<{
1183
+ unmatched: string[];
1184
+ '--'?: string[];
1185
+ } & {
1186
+ url?: string;
1187
+ } & {} & {
1188
+ path?: string;
1189
+ } & {} & {
1190
+ cachePath?: string;
1191
+ } & {} & {
1192
+ verbose?: boolean;
1193
+ } & {} & {
1194
+ skipCache?: boolean;
1195
+ } & {} & {
1196
+ query?: string;
1197
+ } & {} & {
1198
+ lang?: string;
1199
+ } & {} & {
1200
+ excerpt?: boolean;
1201
+ } & {} & {
1202
+ limit?: number;
1203
+ } & {} & {
1204
+ minScore?: number;
1205
+ } & {}, Promise<{
1206
+ query: string;
1207
+ results: {
1208
+ score: number;
1209
+ data: import("./types.js").PagefindResultData;
1210
+ }[];
1211
+ }>, {}, import("cli-forge").CLI<{
1212
+ unmatched: string[];
1213
+ '--'?: string[];
1214
+ } & {
1215
+ url?: string;
1216
+ } & {} & {
1217
+ path?: string;
1218
+ } & {} & {
1219
+ cachePath?: string;
1220
+ } & {} & {
1221
+ verbose?: boolean;
1222
+ } & {} & {
1223
+ skipCache?: boolean;
1224
+ } & {}, any, {}, any>>;
1225
+ }, any>>;
1226
+ } & {
1227
+ info: import("cli-forge").CLI<{
1228
+ unmatched: string[];
1229
+ '--'?: string[];
1230
+ } & {
1231
+ url?: string;
1232
+ } & {} & {
1233
+ path?: string;
1234
+ } & {} & {
1235
+ cachePath?: string;
1236
+ } & {} & {
1237
+ verbose?: boolean;
1238
+ } & {} & {
1239
+ skipCache?: boolean;
1240
+ } & {}, Promise<{
1241
+ baseUrl: string;
1242
+ pagefindPath: string;
1243
+ initialized: boolean;
1244
+ }>, {
1245
+ search: import("cli-forge").CLI<{
1246
+ unmatched: string[];
1247
+ '--'?: string[];
1248
+ } & {
1249
+ url?: string;
1250
+ } & {} & {
1251
+ path?: string;
1252
+ } & {} & {
1253
+ cachePath?: string;
1254
+ } & {} & {
1255
+ verbose?: boolean;
1256
+ } & {} & {
1257
+ skipCache?: boolean;
1258
+ } & {} & {
1259
+ query?: string;
1260
+ } & {} & {
1261
+ lang?: string;
1262
+ } & {} & {
1263
+ excerpt?: boolean;
1264
+ } & {} & {
1265
+ limit?: number;
1266
+ } & {} & {
1267
+ minScore?: number;
1268
+ } & {}, Promise<{
1269
+ query: string;
1270
+ results: {
1271
+ score: number;
1272
+ data: import("./types.js").PagefindResultData;
1273
+ }[];
1274
+ }>, {}, import("cli-forge").CLI<{
1275
+ unmatched: string[];
1276
+ '--'?: string[];
1277
+ } & {
1278
+ url?: string;
1279
+ } & {} & {
1280
+ path?: string;
1281
+ } & {} & {
1282
+ cachePath?: string;
1283
+ } & {} & {
1284
+ verbose?: boolean;
1285
+ } & {} & {
1286
+ skipCache?: boolean;
1287
+ } & {}, any, {}, any>>;
1288
+ } & {
1289
+ filters: import("cli-forge").CLI<{
1290
+ unmatched: string[];
1291
+ '--'?: string[];
1292
+ } & {
1293
+ url?: string;
1294
+ } & {} & {
1295
+ path?: string;
1296
+ } & {} & {
1297
+ cachePath?: string;
1298
+ } & {} & {
1299
+ verbose?: boolean;
1300
+ } & {} & {
1301
+ skipCache?: boolean;
1302
+ } & {}, Promise<import("./types.js").PagefindFilterMap>, {
1303
+ search: import("cli-forge").CLI<{
1304
+ unmatched: string[];
1305
+ '--'?: string[];
1306
+ } & {
1307
+ url?: string;
1308
+ } & {} & {
1309
+ path?: string;
1310
+ } & {} & {
1311
+ cachePath?: string;
1312
+ } & {} & {
1313
+ verbose?: boolean;
1314
+ } & {} & {
1315
+ skipCache?: boolean;
1316
+ } & {} & {
1317
+ query?: string;
1318
+ } & {} & {
1319
+ lang?: string;
1320
+ } & {} & {
1321
+ excerpt?: boolean;
1322
+ } & {} & {
1323
+ limit?: number;
1324
+ } & {} & {
1325
+ minScore?: number;
1326
+ } & {}, Promise<{
1327
+ query: string;
1328
+ results: {
1329
+ score: number;
1330
+ data: import("./types.js").PagefindResultData;
1331
+ }[];
1332
+ }>, {}, import("cli-forge").CLI<{
1333
+ unmatched: string[];
1334
+ '--'?: string[];
1335
+ } & {
1336
+ url?: string;
1337
+ } & {} & {
1338
+ path?: string;
1339
+ } & {} & {
1340
+ cachePath?: string;
1341
+ } & {} & {
1342
+ verbose?: boolean;
1343
+ } & {} & {
1344
+ skipCache?: boolean;
1345
+ } & {}, any, {}, any>>;
1346
+ }, import("cli-forge").CLI<{
1347
+ unmatched: string[];
1348
+ '--'?: string[];
1349
+ } & {
1350
+ url?: string;
1351
+ } & {} & {
1352
+ path?: string;
1353
+ } & {} & {
1354
+ cachePath?: string;
1355
+ } & {} & {
1356
+ verbose?: boolean;
1357
+ } & {} & {
1358
+ skipCache?: boolean;
1359
+ } & {}, any, {
1360
+ search: import("cli-forge").CLI<{
1361
+ unmatched: string[];
1362
+ '--'?: string[];
1363
+ } & {
1364
+ url?: string;
1365
+ } & {} & {
1366
+ path?: string;
1367
+ } & {} & {
1368
+ cachePath?: string;
1369
+ } & {} & {
1370
+ verbose?: boolean;
1371
+ } & {} & {
1372
+ skipCache?: boolean;
1373
+ } & {} & {
1374
+ query?: string;
1375
+ } & {} & {
1376
+ lang?: string;
1377
+ } & {} & {
1378
+ excerpt?: boolean;
1379
+ } & {} & {
1380
+ limit?: number;
1381
+ } & {} & {
1382
+ minScore?: number;
1383
+ } & {}, Promise<{
1384
+ query: string;
1385
+ results: {
1386
+ score: number;
1387
+ data: import("./types.js").PagefindResultData;
1388
+ }[];
1389
+ }>, {}, import("cli-forge").CLI<{
1390
+ unmatched: string[];
1391
+ '--'?: string[];
1392
+ } & {
1393
+ url?: string;
1394
+ } & {} & {
1395
+ path?: string;
1396
+ } & {} & {
1397
+ cachePath?: string;
1398
+ } & {} & {
1399
+ verbose?: boolean;
1400
+ } & {} & {
1401
+ skipCache?: boolean;
1402
+ } & {}, any, {}, any>>;
1403
+ }, any>>;
1404
+ }, import("cli-forge").CLI<{
1405
+ unmatched: string[];
1406
+ '--'?: string[];
1407
+ } & {
1408
+ url?: string;
1409
+ } & {} & {
1410
+ path?: string;
1411
+ } & {} & {
1412
+ cachePath?: string;
1413
+ } & {} & {
1414
+ verbose?: boolean;
1415
+ } & {} & {
1416
+ skipCache?: boolean;
1417
+ } & {}, any, {
1418
+ search: import("cli-forge").CLI<{
1419
+ unmatched: string[];
1420
+ '--'?: string[];
1421
+ } & {
1422
+ url?: string;
1423
+ } & {} & {
1424
+ path?: string;
1425
+ } & {} & {
1426
+ cachePath?: string;
1427
+ } & {} & {
1428
+ verbose?: boolean;
1429
+ } & {} & {
1430
+ skipCache?: boolean;
1431
+ } & {} & {
1432
+ query?: string;
1433
+ } & {} & {
1434
+ lang?: string;
1435
+ } & {} & {
1436
+ excerpt?: boolean;
1437
+ } & {} & {
1438
+ limit?: number;
1439
+ } & {} & {
1440
+ minScore?: number;
1441
+ } & {}, Promise<{
1442
+ query: string;
1443
+ results: {
1444
+ score: number;
1445
+ data: import("./types.js").PagefindResultData;
1446
+ }[];
1447
+ }>, {}, import("cli-forge").CLI<{
1448
+ unmatched: string[];
1449
+ '--'?: string[];
1450
+ } & {
1451
+ url?: string;
1452
+ } & {} & {
1453
+ path?: string;
1454
+ } & {} & {
1455
+ cachePath?: string;
1456
+ } & {} & {
1457
+ verbose?: boolean;
1458
+ } & {} & {
1459
+ skipCache?: boolean;
1460
+ } & {}, any, {}, any>>;
1461
+ } & {
1462
+ filters: import("cli-forge").CLI<{
1463
+ unmatched: string[];
1464
+ '--'?: string[];
1465
+ } & {
1466
+ url?: string;
1467
+ } & {} & {
1468
+ path?: string;
1469
+ } & {} & {
1470
+ cachePath?: string;
1471
+ } & {} & {
1472
+ verbose?: boolean;
1473
+ } & {} & {
1474
+ skipCache?: boolean;
1475
+ } & {}, Promise<import("./types.js").PagefindFilterMap>, {
1476
+ search: import("cli-forge").CLI<{
1477
+ unmatched: string[];
1478
+ '--'?: string[];
1479
+ } & {
1480
+ url?: string;
1481
+ } & {} & {
1482
+ path?: string;
1483
+ } & {} & {
1484
+ cachePath?: string;
1485
+ } & {} & {
1486
+ verbose?: boolean;
1487
+ } & {} & {
1488
+ skipCache?: boolean;
1489
+ } & {} & {
1490
+ query?: string;
1491
+ } & {} & {
1492
+ lang?: string;
1493
+ } & {} & {
1494
+ excerpt?: boolean;
1495
+ } & {} & {
1496
+ limit?: number;
1497
+ } & {} & {
1498
+ minScore?: number;
1499
+ } & {}, Promise<{
1500
+ query: string;
1501
+ results: {
1502
+ score: number;
1503
+ data: import("./types.js").PagefindResultData;
1504
+ }[];
1505
+ }>, {}, import("cli-forge").CLI<{
1506
+ unmatched: string[];
1507
+ '--'?: string[];
1508
+ } & {
1509
+ url?: string;
1510
+ } & {} & {
1511
+ path?: string;
1512
+ } & {} & {
1513
+ cachePath?: string;
1514
+ } & {} & {
1515
+ verbose?: boolean;
1516
+ } & {} & {
1517
+ skipCache?: boolean;
1518
+ } & {}, any, {}, any>>;
1519
+ }, import("cli-forge").CLI<{
1520
+ unmatched: string[];
1521
+ '--'?: string[];
1522
+ } & {
1523
+ url?: string;
1524
+ } & {} & {
1525
+ path?: string;
1526
+ } & {} & {
1527
+ cachePath?: string;
1528
+ } & {} & {
1529
+ verbose?: boolean;
1530
+ } & {} & {
1531
+ skipCache?: boolean;
1532
+ } & {}, any, {
1533
+ search: import("cli-forge").CLI<{
1534
+ unmatched: string[];
1535
+ '--'?: string[];
1536
+ } & {
1537
+ url?: string;
1538
+ } & {} & {
1539
+ path?: string;
1540
+ } & {} & {
1541
+ cachePath?: string;
1542
+ } & {} & {
1543
+ verbose?: boolean;
1544
+ } & {} & {
1545
+ skipCache?: boolean;
1546
+ } & {} & {
1547
+ query?: string;
1548
+ } & {} & {
1549
+ lang?: string;
1550
+ } & {} & {
1551
+ excerpt?: boolean;
1552
+ } & {} & {
1553
+ limit?: number;
1554
+ } & {} & {
1555
+ minScore?: number;
1556
+ } & {}, Promise<{
1557
+ query: string;
1558
+ results: {
1559
+ score: number;
1560
+ data: import("./types.js").PagefindResultData;
1561
+ }[];
1562
+ }>, {}, import("cli-forge").CLI<{
1563
+ unmatched: string[];
1564
+ '--'?: string[];
1565
+ } & {
1566
+ url?: string;
1567
+ } & {} & {
1568
+ path?: string;
1569
+ } & {} & {
1570
+ cachePath?: string;
1571
+ } & {} & {
1572
+ verbose?: boolean;
1573
+ } & {} & {
1574
+ skipCache?: boolean;
1575
+ } & {}, any, {}, any>>;
1576
+ }, any>>;
1577
+ }, any>>;
401
1578
  }, any>>;
402
1579
  }, undefined>;
403
1580
  export default pagefindCLI;