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