@alloy-js/go 0.3.0-dev.3 → 0.3.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.
Files changed (103) hide show
  1. package/CHANGELOG.md +8 -0
  2. package/dist/tsconfig.tsbuildinfo +1 -1
  3. package/docs/api/components/FunctionDeclaration.md +53 -0
  4. package/docs/api/components/FunctionParameter.md +40 -0
  5. package/docs/api/components/FunctionParameters.md +29 -0
  6. package/docs/api/components/FunctionReceiver.md +38 -0
  7. package/docs/api/components/ImportStatements.md +25 -0
  8. package/docs/api/components/InterfaceDeclaration.md +54 -0
  9. package/docs/api/components/InterfaceEmbed.md +29 -0
  10. package/docs/api/components/InterfaceFunction.md +41 -0
  11. package/docs/api/components/InterfaceTypeDeclaration.md +56 -0
  12. package/docs/api/components/LineComment.md +29 -0
  13. package/docs/api/components/ModuleDirectory.md +29 -0
  14. package/docs/api/components/Name.md +19 -0
  15. package/docs/api/components/Pointer.md +29 -0
  16. package/docs/api/components/Reference.md +25 -0
  17. package/docs/api/components/SingleImportStatement.md +35 -0
  18. package/docs/api/components/SourceDirectory.md +27 -0
  19. package/docs/api/components/SourceFile.md +44 -0
  20. package/docs/api/components/StructDeclaration.md +51 -0
  21. package/docs/api/components/StructEmbed.md +29 -0
  22. package/docs/api/components/StructMember.md +41 -0
  23. package/docs/api/components/StructTypeDeclaration.md +56 -0
  24. package/docs/api/components/TypeConstraint.md +28 -0
  25. package/docs/api/components/TypeDeclaration.md +47 -0
  26. package/docs/api/components/TypeDeclarationGroup.md +27 -0
  27. package/docs/api/components/TypeParameter.md +37 -0
  28. package/docs/api/components/TypeParameters.md +25 -0
  29. package/docs/api/components/VariableDeclaration.md +44 -0
  30. package/docs/api/components/VariableDeclarationGroup.md +28 -0
  31. package/docs/api/components/index.md +30 -0
  32. package/docs/api/contexts/TypeDeclarationGroup-context.md +17 -0
  33. package/docs/api/contexts/VariableDeclarationGroup-context.md +18 -0
  34. package/docs/api/contexts/index.md +4 -0
  35. package/docs/api/functions/createAnonymousTypeSymbol.md +25 -0
  36. package/docs/api/functions/createFunctionScope.md +26 -0
  37. package/docs/api/functions/createFunctionSymbol.md +35 -0
  38. package/docs/api/functions/createGoModuleScope.md +18 -0
  39. package/docs/api/functions/createGoNamePolicy.md +17 -0
  40. package/docs/api/functions/createGoPackageScope.md +18 -0
  41. package/docs/api/functions/createInterfaceMemberSymbol.md +25 -0
  42. package/docs/api/functions/createModule.md +20 -0
  43. package/docs/api/functions/createNamedTypeScope.md +27 -0
  44. package/docs/api/functions/createNestedStructSymbol.md +26 -0
  45. package/docs/api/functions/createPackageSymbol.md +19 -0
  46. package/docs/api/functions/createParameterSymbol.md +36 -0
  47. package/docs/api/functions/createPropertySymbol.md +34 -0
  48. package/docs/api/functions/createStructMemberSymbol.md +25 -0
  49. package/docs/api/functions/createTypeParameterSymbol.md +25 -0
  50. package/docs/api/functions/createTypeSymbol.md +26 -0
  51. package/docs/api/functions/createVariableSymbol.md +34 -0
  52. package/docs/api/functions/index.md +29 -0
  53. package/docs/api/functions/ref.md +18 -0
  54. package/docs/api/functions/useEnclosingPackageScope.md +17 -0
  55. package/docs/api/functions/useFuncScope.md +17 -0
  56. package/docs/api/functions/useGoNamePolicy.md +17 -0
  57. package/docs/api/functions/useGoScope.md +17 -0
  58. package/docs/api/functions/useLexicalScope.md +17 -0
  59. package/docs/api/functions/useModule.md +17 -0
  60. package/docs/api/functions/useNamedTypeScope.md +17 -0
  61. package/docs/api/functions/usePackage.md +17 -0
  62. package/docs/api/functions/useSourceFileScope.md +17 -0
  63. package/docs/api/index.md +7 -0
  64. package/docs/api/types/CreateTypeParameterSymbolOptions.md +9 -0
  65. package/docs/api/types/Descriptor.md +5 -0
  66. package/docs/api/types/EmbedDescriptor.md +9 -0
  67. package/docs/api/types/FieldDescriptor.md +9 -0
  68. package/docs/api/types/FunctionDescriptor.md +9 -0
  69. package/docs/api/types/FunctionSymbol.md +13 -0
  70. package/docs/api/types/GoElements.md +5 -0
  71. package/docs/api/types/GoFunctionScope.md +12 -0
  72. package/docs/api/types/GoLexicalScope.md +11 -0
  73. package/docs/api/types/GoModuleScope.md +10 -0
  74. package/docs/api/types/GoNamedTypeScope.md +16 -0
  75. package/docs/api/types/GoPackageScope.md +10 -0
  76. package/docs/api/types/GoScope.md +10 -0
  77. package/docs/api/types/GoSourceFileScope.md +13 -0
  78. package/docs/api/types/GoSymbol.md +17 -0
  79. package/docs/api/types/GoSymbolKinds.md +5 -0
  80. package/docs/api/types/GoSymbolOptions.md +10 -0
  81. package/docs/api/types/ImportRecords.md +5 -0
  82. package/docs/api/types/InterfaceDescriptor.md +9 -0
  83. package/docs/api/types/LibraryFrom.md +5 -0
  84. package/docs/api/types/MemberDescriptor.md +8 -0
  85. package/docs/api/types/MethodDescriptor.md +9 -0
  86. package/docs/api/types/NamedTypeDescriptor.md +8 -0
  87. package/docs/api/types/NamedTypeSymbol.md +17 -0
  88. package/docs/api/types/NamedTypeSymbolKind.md +5 -0
  89. package/docs/api/types/NamedTypeSymbolOptions.md +9 -0
  90. package/docs/api/types/NamedTypeTypeKind.md +5 -0
  91. package/docs/api/types/PackageDescriptor.md +12 -0
  92. package/docs/api/types/PackageSymbol.md +15 -0
  93. package/docs/api/types/PackageSymbolOptions.md +10 -0
  94. package/docs/api/types/ResolveDescriptor.md +7 -0
  95. package/docs/api/types/SourceFileHeaderProps.md +9 -0
  96. package/docs/api/types/StrictDescriptor.md +5 -0
  97. package/docs/api/types/StructDescriptor.md +9 -0
  98. package/docs/api/types/TypeDescriptor.md +9 -0
  99. package/docs/api/types/VariableDescriptor.md +9 -0
  100. package/docs/api/types/index.md +38 -0
  101. package/docs/api/variables/index.md +3 -0
  102. package/docs/api/variables/std.md +2463 -0
  103. package/package.json +6 -6
@@ -0,0 +1,2463 @@
1
+ # std
2
+
3
+ ```ts
4
+ std: {
5
+ io: import("../create-module.js").LibraryFrom<{
6
+ kind: "package";
7
+ members: {
8
+ fs: {
9
+ kind: "package";
10
+ members: {
11
+ ErrInvalid: {
12
+ kind: "var";
13
+ };
14
+ ErrPermission: {
15
+ kind: "var";
16
+ };
17
+ ErrExist: {
18
+ kind: "var";
19
+ };
20
+ ErrNotExist: {
21
+ kind: "var";
22
+ };
23
+ ErrClosed: {
24
+ kind: "var";
25
+ };
26
+ SkipAll: {
27
+ kind: "var";
28
+ };
29
+ SkipDir: {
30
+ kind: "var";
31
+ };
32
+ FormatDirEntry: {
33
+ kind: "function";
34
+ };
35
+ FormatFileInfo: {
36
+ kind: "function";
37
+ };
38
+ Glob: {
39
+ kind: "function";
40
+ };
41
+ ReadFile: {
42
+ kind: "function";
43
+ };
44
+ ReadLink: {
45
+ kind: "function";
46
+ };
47
+ ValidPath: {
48
+ kind: "function";
49
+ };
50
+ WalkDir: {
51
+ kind: "function";
52
+ };
53
+ DirEntry: {
54
+ kind: "interface";
55
+ members: {
56
+ Name: {
57
+ kind: "field";
58
+ };
59
+ IsDir: {
60
+ kind: "field";
61
+ };
62
+ Type: {
63
+ kind: "field";
64
+ };
65
+ Info: {
66
+ kind: "field";
67
+ };
68
+ };
69
+ };
70
+ FileInfoToDirEntry: {
71
+ kind: "function";
72
+ };
73
+ ReadDir: {
74
+ kind: "function";
75
+ };
76
+ FS: {
77
+ kind: "interface";
78
+ members: {
79
+ Open: {
80
+ kind: "field";
81
+ };
82
+ };
83
+ };
84
+ Sub: {
85
+ kind: "function";
86
+ };
87
+ File: {
88
+ kind: "interface";
89
+ members: {
90
+ Stat: {
91
+ kind: "field";
92
+ };
93
+ Read: {
94
+ kind: "field";
95
+ };
96
+ Close: {
97
+ kind: "field";
98
+ };
99
+ };
100
+ };
101
+ FileInfo: {
102
+ kind: "interface";
103
+ members: {
104
+ Name: {
105
+ kind: "field";
106
+ };
107
+ Size: {
108
+ kind: "field";
109
+ };
110
+ Mode: {
111
+ kind: "field";
112
+ };
113
+ ModTime: {
114
+ kind: "field";
115
+ };
116
+ IsDir: {
117
+ kind: "field";
118
+ };
119
+ Sys: {
120
+ kind: "field";
121
+ };
122
+ };
123
+ };
124
+ Lstat: {
125
+ kind: "function";
126
+ };
127
+ Stat: {
128
+ kind: "function";
129
+ };
130
+ FileMode: {
131
+ kind: "type";
132
+ members: {
133
+ IsDir: {
134
+ kind: "method";
135
+ };
136
+ IsRegular: {
137
+ kind: "method";
138
+ };
139
+ Perm: {
140
+ kind: "method";
141
+ };
142
+ String: {
143
+ kind: "method";
144
+ };
145
+ Type: {
146
+ kind: "method";
147
+ };
148
+ };
149
+ };
150
+ GlobFS: {
151
+ kind: "interface";
152
+ members: {
153
+ FS: {
154
+ kind: "embed";
155
+ type: () => any;
156
+ };
157
+ Glob: {
158
+ kind: "field";
159
+ };
160
+ };
161
+ };
162
+ PathError: {
163
+ kind: "struct";
164
+ members: {
165
+ Op: {
166
+ kind: "field";
167
+ };
168
+ Path: {
169
+ kind: "field";
170
+ };
171
+ Err: {
172
+ kind: "field";
173
+ };
174
+ Error: {
175
+ kind: "method";
176
+ };
177
+ Timeout: {
178
+ kind: "method";
179
+ };
180
+ Unwrap: {
181
+ kind: "method";
182
+ };
183
+ };
184
+ };
185
+ ReadDirFS: {
186
+ kind: "interface";
187
+ members: {
188
+ FS: {
189
+ kind: "embed";
190
+ type: () => any;
191
+ };
192
+ ReadDir: {
193
+ kind: "field";
194
+ };
195
+ };
196
+ };
197
+ ReadDirFile: {
198
+ kind: "interface";
199
+ members: {
200
+ File: {
201
+ kind: "embed";
202
+ type: () => any;
203
+ };
204
+ ReadDir: {
205
+ kind: "field";
206
+ };
207
+ };
208
+ };
209
+ ReadFileFS: {
210
+ kind: "interface";
211
+ members: {
212
+ FS: {
213
+ kind: "embed";
214
+ type: () => any;
215
+ };
216
+ ReadFile: {
217
+ kind: "field";
218
+ };
219
+ };
220
+ };
221
+ ReadLinkFS: {
222
+ kind: "interface";
223
+ members: {
224
+ FS: {
225
+ kind: "embed";
226
+ type: () => any;
227
+ };
228
+ ReadLink: {
229
+ kind: "field";
230
+ };
231
+ Lstat: {
232
+ kind: "field";
233
+ };
234
+ };
235
+ };
236
+ StatFS: {
237
+ kind: "interface";
238
+ members: {
239
+ FS: {
240
+ kind: "embed";
241
+ type: () => any;
242
+ };
243
+ Stat: {
244
+ kind: "field";
245
+ };
246
+ };
247
+ };
248
+ SubFS: {
249
+ kind: "interface";
250
+ members: {
251
+ FS: {
252
+ kind: "embed";
253
+ type: () => any;
254
+ };
255
+ Sub: {
256
+ kind: "field";
257
+ };
258
+ };
259
+ };
260
+ WalkDirFunc: {
261
+ kind: "function";
262
+ };
263
+ };
264
+ };
265
+ SeekStart: {
266
+ kind: "var";
267
+ };
268
+ SeekCurrent: {
269
+ kind: "var";
270
+ };
271
+ SeekEnd: {
272
+ kind: "var";
273
+ };
274
+ EOF: {
275
+ kind: "var";
276
+ };
277
+ ErrClosedPipe: {
278
+ kind: "var";
279
+ };
280
+ ErrNoProgress: {
281
+ kind: "var";
282
+ };
283
+ ErrShortBuffer: {
284
+ kind: "var";
285
+ };
286
+ ErrShortWrite: {
287
+ kind: "var";
288
+ };
289
+ ErrUnexpectedEOF: {
290
+ kind: "var";
291
+ };
292
+ Copy: {
293
+ kind: "function";
294
+ };
295
+ CopyBuffer: {
296
+ kind: "function";
297
+ };
298
+ CopyN: {
299
+ kind: "function";
300
+ };
301
+ Pipe: {
302
+ kind: "function";
303
+ };
304
+ ReadAll: {
305
+ kind: "function";
306
+ };
307
+ ReadAtLeast: {
308
+ kind: "function";
309
+ };
310
+ ReadFull: {
311
+ kind: "function";
312
+ };
313
+ WriteString: {
314
+ kind: "function";
315
+ };
316
+ ByteReader: {
317
+ kind: "interface";
318
+ members: {
319
+ ReadByte: {
320
+ kind: "field";
321
+ };
322
+ };
323
+ };
324
+ ByteScanner: {
325
+ kind: "interface";
326
+ members: {
327
+ ByteReader: {
328
+ kind: "embed";
329
+ type: () => any;
330
+ };
331
+ UnreadByte: {
332
+ kind: "field";
333
+ };
334
+ };
335
+ };
336
+ ByteWriter: {
337
+ kind: "interface";
338
+ members: {
339
+ WriteByte: {
340
+ kind: "field";
341
+ };
342
+ };
343
+ };
344
+ Closer: {
345
+ kind: "interface";
346
+ members: {
347
+ Close: {
348
+ kind: "field";
349
+ };
350
+ };
351
+ };
352
+ LimitedReader: {
353
+ kind: "struct";
354
+ members: {
355
+ R: {
356
+ kind: "field";
357
+ };
358
+ N: {
359
+ kind: "field";
360
+ };
361
+ Read: {
362
+ kind: "method";
363
+ };
364
+ };
365
+ };
366
+ OffsetWriter: {
367
+ kind: "struct";
368
+ members: {
369
+ Seek: {
370
+ kind: "method";
371
+ };
372
+ Write: {
373
+ kind: "method";
374
+ };
375
+ WriteAt: {
376
+ kind: "method";
377
+ };
378
+ };
379
+ };
380
+ NewOffsetWriter: {
381
+ kind: "function";
382
+ };
383
+ PipeReader: {
384
+ kind: "struct";
385
+ members: {
386
+ Close: {
387
+ kind: "method";
388
+ };
389
+ CloseWithError: {
390
+ kind: "method";
391
+ };
392
+ Read: {
393
+ kind: "method";
394
+ };
395
+ };
396
+ };
397
+ PipeWriter: {
398
+ kind: "struct";
399
+ members: {
400
+ Close: {
401
+ kind: "method";
402
+ };
403
+ CloseWithError: {
404
+ kind: "method";
405
+ };
406
+ Write: {
407
+ kind: "method";
408
+ };
409
+ };
410
+ };
411
+ ReadCloser: {
412
+ kind: "interface";
413
+ members: {
414
+ Reader: {
415
+ kind: "embed";
416
+ type: () => any;
417
+ };
418
+ Closer: {
419
+ kind: "embed";
420
+ type: () => any;
421
+ };
422
+ };
423
+ };
424
+ NopCloser: {
425
+ kind: "function";
426
+ };
427
+ ReadSeekCloser: {
428
+ kind: "interface";
429
+ members: {
430
+ Reader: {
431
+ kind: "embed";
432
+ type: () => any;
433
+ };
434
+ Seeker: {
435
+ kind: "embed";
436
+ type: () => any;
437
+ };
438
+ Closer: {
439
+ kind: "embed";
440
+ type: () => any;
441
+ };
442
+ };
443
+ };
444
+ ReadSeeker: {
445
+ kind: "interface";
446
+ members: {
447
+ Reader: {
448
+ kind: "embed";
449
+ type: () => any;
450
+ };
451
+ Seeker: {
452
+ kind: "embed";
453
+ type: () => any;
454
+ };
455
+ };
456
+ };
457
+ ReadWriteCloser: {
458
+ kind: "interface";
459
+ members: {
460
+ Reader: {
461
+ kind: "embed";
462
+ type: () => any;
463
+ };
464
+ Writer: {
465
+ kind: "embed";
466
+ type: () => any;
467
+ };
468
+ Closer: {
469
+ kind: "embed";
470
+ type: () => any;
471
+ };
472
+ };
473
+ };
474
+ ReadWriteSeeker: {
475
+ kind: "interface";
476
+ members: {
477
+ Reader: {
478
+ kind: "embed";
479
+ type: () => any;
480
+ };
481
+ Writer: {
482
+ kind: "embed";
483
+ type: () => any;
484
+ };
485
+ Seeker: {
486
+ kind: "embed";
487
+ type: () => any;
488
+ };
489
+ };
490
+ };
491
+ ReadWriter: {
492
+ kind: "interface";
493
+ members: {
494
+ Reader: {
495
+ kind: "embed";
496
+ type: () => any;
497
+ };
498
+ Writer: {
499
+ kind: "embed";
500
+ type: () => any;
501
+ };
502
+ };
503
+ };
504
+ Reader: {
505
+ kind: "interface";
506
+ members: {
507
+ Read: {
508
+ kind: "field";
509
+ };
510
+ };
511
+ };
512
+ LimitReader: {
513
+ kind: "function";
514
+ };
515
+ MultiReader: {
516
+ kind: "function";
517
+ };
518
+ TeeReader: {
519
+ kind: "function";
520
+ };
521
+ ReaderAt: {
522
+ kind: "interface";
523
+ members: {
524
+ ReadAt: {
525
+ kind: "field";
526
+ };
527
+ };
528
+ };
529
+ ReaderFrom: {
530
+ kind: "interface";
531
+ members: {
532
+ ReadFrom: {
533
+ kind: "field";
534
+ };
535
+ };
536
+ };
537
+ RuneReader: {
538
+ kind: "interface";
539
+ members: {
540
+ ReadRune: {
541
+ kind: "field";
542
+ };
543
+ };
544
+ };
545
+ RuneScanner: {
546
+ kind: "interface";
547
+ members: {
548
+ RuneReader: {
549
+ kind: "embed";
550
+ type: () => any;
551
+ };
552
+ UnreadRune: {
553
+ kind: "field";
554
+ };
555
+ };
556
+ };
557
+ SectionReader: {
558
+ kind: "struct";
559
+ members: {
560
+ Outer: {
561
+ kind: "method";
562
+ };
563
+ Read: {
564
+ kind: "method";
565
+ };
566
+ ReadAt: {
567
+ kind: "method";
568
+ };
569
+ Seek: {
570
+ kind: "method";
571
+ };
572
+ Size: {
573
+ kind: "method";
574
+ };
575
+ };
576
+ };
577
+ NewSectionReader: {
578
+ kind: "function";
579
+ };
580
+ Seeker: {
581
+ kind: "interface";
582
+ members: {
583
+ Seek: {
584
+ kind: "field";
585
+ };
586
+ };
587
+ };
588
+ StringWriter: {
589
+ kind: "interface";
590
+ members: {
591
+ WriteString: {
592
+ kind: "field";
593
+ };
594
+ };
595
+ };
596
+ WriteCloser: {
597
+ kind: "interface";
598
+ members: {
599
+ Writer: {
600
+ kind: "embed";
601
+ type: () => any;
602
+ };
603
+ Closer: {
604
+ kind: "embed";
605
+ type: () => any;
606
+ };
607
+ };
608
+ };
609
+ WriteSeeker: {
610
+ kind: "interface";
611
+ members: {
612
+ Writer: {
613
+ kind: "embed";
614
+ type: () => any;
615
+ };
616
+ Seeker: {
617
+ kind: "embed";
618
+ type: () => any;
619
+ };
620
+ };
621
+ };
622
+ Writer: {
623
+ kind: "interface";
624
+ members: {
625
+ Write: {
626
+ kind: "field";
627
+ };
628
+ };
629
+ };
630
+ MultiWriter: {
631
+ kind: "function";
632
+ };
633
+ WriterAt: {
634
+ kind: "interface";
635
+ members: {
636
+ WriteAt: {
637
+ kind: "field";
638
+ };
639
+ };
640
+ };
641
+ WriterTo: {
642
+ kind: "interface";
643
+ members: {
644
+ WriteTo: {
645
+ kind: "field";
646
+ };
647
+ };
648
+ };
649
+ };
650
+ }>;
651
+ fmt: import("../create-module.js").LibraryFrom<{
652
+ kind: "package";
653
+ members: {
654
+ Append: {
655
+ kind: "function";
656
+ };
657
+ Appendf: {
658
+ kind: "function";
659
+ };
660
+ Appendln: {
661
+ kind: "function";
662
+ };
663
+ Errorf: {
664
+ kind: "function";
665
+ };
666
+ FormatString: {
667
+ kind: "function";
668
+ };
669
+ Fprint: {
670
+ kind: "function";
671
+ };
672
+ Fprintf: {
673
+ kind: "function";
674
+ };
675
+ Fprintln: {
676
+ kind: "function";
677
+ };
678
+ Fscan: {
679
+ kind: "function";
680
+ };
681
+ Fscanf: {
682
+ kind: "function";
683
+ };
684
+ Fscanln: {
685
+ kind: "function";
686
+ };
687
+ Print: {
688
+ kind: "function";
689
+ };
690
+ Printf: {
691
+ kind: "function";
692
+ };
693
+ Println: {
694
+ kind: "function";
695
+ };
696
+ Scan: {
697
+ kind: "function";
698
+ };
699
+ Scanf: {
700
+ kind: "function";
701
+ };
702
+ Scanln: {
703
+ kind: "function";
704
+ };
705
+ Sprint: {
706
+ kind: "function";
707
+ };
708
+ Sprintf: {
709
+ kind: "function";
710
+ };
711
+ Sprintln: {
712
+ kind: "function";
713
+ };
714
+ Sscan: {
715
+ kind: "function";
716
+ };
717
+ Sscanf: {
718
+ kind: "function";
719
+ };
720
+ Sscanln: {
721
+ kind: "function";
722
+ };
723
+ Formatter: {
724
+ kind: "interface";
725
+ members: {
726
+ Format: {
727
+ kind: "field";
728
+ };
729
+ };
730
+ };
731
+ GoStringer: {
732
+ kind: "interface";
733
+ members: {
734
+ GoString: {
735
+ kind: "field";
736
+ };
737
+ };
738
+ };
739
+ ScanState: {
740
+ kind: "interface";
741
+ members: {
742
+ ReadRune: {
743
+ kind: "field";
744
+ };
745
+ UnreadRune: {
746
+ kind: "field";
747
+ };
748
+ SkipSpace: {
749
+ kind: "field";
750
+ };
751
+ Token: {
752
+ kind: "field";
753
+ };
754
+ Width: {
755
+ kind: "field";
756
+ };
757
+ Read: {
758
+ kind: "field";
759
+ };
760
+ };
761
+ };
762
+ Scanner: {
763
+ kind: "interface";
764
+ members: {
765
+ Scan: {
766
+ kind: "field";
767
+ };
768
+ };
769
+ };
770
+ State: {
771
+ kind: "interface";
772
+ members: {
773
+ Write: {
774
+ kind: "field";
775
+ };
776
+ Width: {
777
+ kind: "field";
778
+ };
779
+ Precision: {
780
+ kind: "field";
781
+ };
782
+ Flag: {
783
+ kind: "field";
784
+ };
785
+ };
786
+ };
787
+ Stringer: {
788
+ kind: "interface";
789
+ members: {
790
+ String: {
791
+ kind: "field";
792
+ };
793
+ };
794
+ };
795
+ };
796
+ }>;
797
+ net: import("../create-module.js").LibraryFrom<{
798
+ kind: "package";
799
+ members: {
800
+ http: {
801
+ kind: "package";
802
+ members: {
803
+ MethodGet: {
804
+ kind: "var";
805
+ };
806
+ MethodHead: {
807
+ kind: "var";
808
+ };
809
+ MethodPost: {
810
+ kind: "var";
811
+ };
812
+ MethodPut: {
813
+ kind: "var";
814
+ };
815
+ MethodPatch: {
816
+ kind: "var";
817
+ };
818
+ MethodDelete: {
819
+ kind: "var";
820
+ };
821
+ MethodConnect: {
822
+ kind: "var";
823
+ };
824
+ MethodOptions: {
825
+ kind: "var";
826
+ };
827
+ MethodTrace: {
828
+ kind: "var";
829
+ };
830
+ StatusContinue: {
831
+ kind: "var";
832
+ };
833
+ StatusSwitchingProtocols: {
834
+ kind: "var";
835
+ };
836
+ StatusProcessing: {
837
+ kind: "var";
838
+ };
839
+ StatusEarlyHints: {
840
+ kind: "var";
841
+ };
842
+ StatusOK: {
843
+ kind: "var";
844
+ };
845
+ StatusCreated: {
846
+ kind: "var";
847
+ };
848
+ StatusAccepted: {
849
+ kind: "var";
850
+ };
851
+ StatusNonAuthoritativeInfo: {
852
+ kind: "var";
853
+ };
854
+ StatusNoContent: {
855
+ kind: "var";
856
+ };
857
+ StatusResetContent: {
858
+ kind: "var";
859
+ };
860
+ StatusPartialContent: {
861
+ kind: "var";
862
+ };
863
+ StatusMultiStatus: {
864
+ kind: "var";
865
+ };
866
+ StatusAlreadyReported: {
867
+ kind: "var";
868
+ };
869
+ StatusIMUsed: {
870
+ kind: "var";
871
+ };
872
+ StatusMultipleChoices: {
873
+ kind: "var";
874
+ };
875
+ StatusMovedPermanently: {
876
+ kind: "var";
877
+ };
878
+ StatusFound: {
879
+ kind: "var";
880
+ };
881
+ StatusSeeOther: {
882
+ kind: "var";
883
+ };
884
+ StatusNotModified: {
885
+ kind: "var";
886
+ };
887
+ StatusUseProxy: {
888
+ kind: "var";
889
+ };
890
+ StatusTemporaryRedirect: {
891
+ kind: "var";
892
+ };
893
+ StatusPermanentRedirect: {
894
+ kind: "var";
895
+ };
896
+ StatusBadRequest: {
897
+ kind: "var";
898
+ };
899
+ StatusUnauthorized: {
900
+ kind: "var";
901
+ };
902
+ StatusPaymentRequired: {
903
+ kind: "var";
904
+ };
905
+ StatusForbidden: {
906
+ kind: "var";
907
+ };
908
+ StatusNotFound: {
909
+ kind: "var";
910
+ };
911
+ StatusMethodNotAllowed: {
912
+ kind: "var";
913
+ };
914
+ StatusNotAcceptable: {
915
+ kind: "var";
916
+ };
917
+ StatusProxyAuthRequired: {
918
+ kind: "var";
919
+ };
920
+ StatusRequestTimeout: {
921
+ kind: "var";
922
+ };
923
+ StatusConflict: {
924
+ kind: "var";
925
+ };
926
+ StatusGone: {
927
+ kind: "var";
928
+ };
929
+ StatusLengthRequired: {
930
+ kind: "var";
931
+ };
932
+ StatusPreconditionFailed: {
933
+ kind: "var";
934
+ };
935
+ StatusRequestEntityTooLarge: {
936
+ kind: "var";
937
+ };
938
+ StatusRequestURITooLong: {
939
+ kind: "var";
940
+ };
941
+ StatusUnsupportedMediaType: {
942
+ kind: "var";
943
+ };
944
+ StatusRequestedRangeNotSatisfiable: {
945
+ kind: "var";
946
+ };
947
+ StatusExpectationFailed: {
948
+ kind: "var";
949
+ };
950
+ StatusTeapot: {
951
+ kind: "var";
952
+ };
953
+ StatusMisdirectedRequest: {
954
+ kind: "var";
955
+ };
956
+ StatusUnprocessableEntity: {
957
+ kind: "var";
958
+ };
959
+ StatusLocked: {
960
+ kind: "var";
961
+ };
962
+ StatusFailedDependency: {
963
+ kind: "var";
964
+ };
965
+ StatusTooEarly: {
966
+ kind: "var";
967
+ };
968
+ StatusUpgradeRequired: {
969
+ kind: "var";
970
+ };
971
+ StatusPreconditionRequired: {
972
+ kind: "var";
973
+ };
974
+ StatusTooManyRequests: {
975
+ kind: "var";
976
+ };
977
+ StatusRequestHeaderFieldsTooLarge: {
978
+ kind: "var";
979
+ };
980
+ StatusUnavailableForLegalReasons: {
981
+ kind: "var";
982
+ };
983
+ StatusInternalServerError: {
984
+ kind: "var";
985
+ };
986
+ StatusNotImplemented: {
987
+ kind: "var";
988
+ };
989
+ StatusBadGateway: {
990
+ kind: "var";
991
+ };
992
+ StatusServiceUnavailable: {
993
+ kind: "var";
994
+ };
995
+ StatusGatewayTimeout: {
996
+ kind: "var";
997
+ };
998
+ StatusHTTPVersionNotSupported: {
999
+ kind: "var";
1000
+ };
1001
+ StatusVariantAlsoNegotiates: {
1002
+ kind: "var";
1003
+ };
1004
+ StatusInsufficientStorage: {
1005
+ kind: "var";
1006
+ };
1007
+ StatusLoopDetected: {
1008
+ kind: "var";
1009
+ };
1010
+ StatusNotExtended: {
1011
+ kind: "var";
1012
+ };
1013
+ StatusNetworkAuthenticationRequired: {
1014
+ kind: "var";
1015
+ };
1016
+ DefaultMaxHeaderBytes: {
1017
+ kind: "var";
1018
+ };
1019
+ DefaultMaxIdleConnsPerHost: {
1020
+ kind: "var";
1021
+ };
1022
+ TimeFormat: {
1023
+ kind: "var";
1024
+ };
1025
+ TrailerPrefix: {
1026
+ kind: "var";
1027
+ };
1028
+ ErrNotSupported: {
1029
+ kind: "var";
1030
+ };
1031
+ ErrMissingBoundary: {
1032
+ kind: "var";
1033
+ };
1034
+ ErrNotMultipart: {
1035
+ kind: "var";
1036
+ };
1037
+ ErrBodyNotAllowed: {
1038
+ kind: "var";
1039
+ };
1040
+ ErrHijacked: {
1041
+ kind: "var";
1042
+ };
1043
+ ErrContentLength: {
1044
+ kind: "var";
1045
+ };
1046
+ ServerContextKey: {
1047
+ kind: "var";
1048
+ };
1049
+ LocalAddrContextKey: {
1050
+ kind: "var";
1051
+ };
1052
+ DefaultClient: {
1053
+ kind: "var";
1054
+ };
1055
+ DefaultServeMux: {
1056
+ kind: "var";
1057
+ };
1058
+ ErrAbortHandler: {
1059
+ kind: "var";
1060
+ };
1061
+ ErrBodyReadAfterClose: {
1062
+ kind: "var";
1063
+ };
1064
+ ErrHandlerTimeout: {
1065
+ kind: "var";
1066
+ };
1067
+ ErrLineTooLong: {
1068
+ kind: "var";
1069
+ };
1070
+ ErrMissingFile: {
1071
+ kind: "var";
1072
+ };
1073
+ ErrNoCookie: {
1074
+ kind: "var";
1075
+ };
1076
+ ErrNoLocation: {
1077
+ kind: "var";
1078
+ };
1079
+ ErrSchemeMismatch: {
1080
+ kind: "var";
1081
+ };
1082
+ ErrServerClosed: {
1083
+ kind: "var";
1084
+ };
1085
+ ErrSkipAltProtocol: {
1086
+ kind: "var";
1087
+ };
1088
+ ErrUseLastResponse: {
1089
+ kind: "var";
1090
+ };
1091
+ NoBody: {
1092
+ kind: "var";
1093
+ };
1094
+ CanonicalHeaderKey: {
1095
+ kind: "function";
1096
+ };
1097
+ DetectContentType: {
1098
+ kind: "function";
1099
+ };
1100
+ Error: {
1101
+ kind: "function";
1102
+ };
1103
+ Handle: {
1104
+ kind: "function";
1105
+ };
1106
+ HandleFunc: {
1107
+ kind: "function";
1108
+ };
1109
+ ListenAndServe: {
1110
+ kind: "function";
1111
+ };
1112
+ ListenAndServeTLS: {
1113
+ kind: "function";
1114
+ };
1115
+ MaxBytesReader: {
1116
+ kind: "function";
1117
+ };
1118
+ NotFound: {
1119
+ kind: "function";
1120
+ };
1121
+ ParseHTTPVersion: {
1122
+ kind: "function";
1123
+ };
1124
+ ParseTime: {
1125
+ kind: "function";
1126
+ };
1127
+ ProxyFromEnvironment: {
1128
+ kind: "function";
1129
+ };
1130
+ ProxyURL: {
1131
+ kind: "function";
1132
+ };
1133
+ Redirect: {
1134
+ kind: "function";
1135
+ };
1136
+ Serve: {
1137
+ kind: "function";
1138
+ };
1139
+ ServeContent: {
1140
+ kind: "function";
1141
+ };
1142
+ ServeFile: {
1143
+ kind: "function";
1144
+ };
1145
+ ServeFileFS: {
1146
+ kind: "function";
1147
+ };
1148
+ ServeTLS: {
1149
+ kind: "function";
1150
+ };
1151
+ SetCookie: {
1152
+ kind: "function";
1153
+ };
1154
+ StatusText: {
1155
+ kind: "function";
1156
+ };
1157
+ Client: {
1158
+ kind: "struct";
1159
+ members: {
1160
+ Transport: {
1161
+ kind: "field";
1162
+ };
1163
+ CheckRedirect: {
1164
+ kind: "field";
1165
+ };
1166
+ Jar: {
1167
+ kind: "field";
1168
+ };
1169
+ Timeout: {
1170
+ kind: "field";
1171
+ };
1172
+ CloseIdleConnections: {
1173
+ kind: "method";
1174
+ };
1175
+ Do: {
1176
+ kind: "method";
1177
+ };
1178
+ Get: {
1179
+ kind: "method";
1180
+ };
1181
+ Head: {
1182
+ kind: "method";
1183
+ };
1184
+ Post: {
1185
+ kind: "method";
1186
+ };
1187
+ PostForm: {
1188
+ kind: "method";
1189
+ };
1190
+ };
1191
+ };
1192
+ ConnState: {
1193
+ kind: "type";
1194
+ members: {
1195
+ String: {
1196
+ kind: "method";
1197
+ };
1198
+ };
1199
+ };
1200
+ StateNew: {
1201
+ kind: "var";
1202
+ };
1203
+ StateActive: {
1204
+ kind: "var";
1205
+ };
1206
+ StateIdle: {
1207
+ kind: "var";
1208
+ };
1209
+ StateHijacked: {
1210
+ kind: "var";
1211
+ };
1212
+ StateClosed: {
1213
+ kind: "var";
1214
+ };
1215
+ Cookie: {
1216
+ kind: "struct";
1217
+ members: {
1218
+ Name: {
1219
+ kind: "field";
1220
+ };
1221
+ Value: {
1222
+ kind: "field";
1223
+ };
1224
+ Quoted: {
1225
+ kind: "field";
1226
+ };
1227
+ Path: {
1228
+ kind: "field";
1229
+ };
1230
+ Domain: {
1231
+ kind: "field";
1232
+ };
1233
+ Expires: {
1234
+ kind: "field";
1235
+ };
1236
+ RawExpires: {
1237
+ kind: "field";
1238
+ };
1239
+ MaxAge: {
1240
+ kind: "field";
1241
+ };
1242
+ Secure: {
1243
+ kind: "field";
1244
+ };
1245
+ HttpOnly: {
1246
+ kind: "field";
1247
+ };
1248
+ SameSite: {
1249
+ kind: "field";
1250
+ };
1251
+ Partitioned: {
1252
+ kind: "field";
1253
+ };
1254
+ Raw: {
1255
+ kind: "field";
1256
+ };
1257
+ Unparsed: {
1258
+ kind: "field";
1259
+ };
1260
+ String: {
1261
+ kind: "method";
1262
+ };
1263
+ Valid: {
1264
+ kind: "method";
1265
+ };
1266
+ };
1267
+ };
1268
+ ParseCookie: {
1269
+ kind: "function";
1270
+ };
1271
+ ParseSetCookie: {
1272
+ kind: "function";
1273
+ };
1274
+ CookieJar: {
1275
+ kind: "interface";
1276
+ members: {
1277
+ SetCookies: {
1278
+ kind: "field";
1279
+ };
1280
+ Cookies: {
1281
+ kind: "field";
1282
+ };
1283
+ };
1284
+ };
1285
+ CrossOriginProtection: {
1286
+ kind: "struct";
1287
+ members: {
1288
+ AddInsecureBypassPattern: {
1289
+ kind: "method";
1290
+ };
1291
+ AddTrustedOrigin: {
1292
+ kind: "method";
1293
+ };
1294
+ Check: {
1295
+ kind: "method";
1296
+ };
1297
+ Handler: {
1298
+ kind: "method";
1299
+ };
1300
+ SetDenyHandler: {
1301
+ kind: "method";
1302
+ };
1303
+ };
1304
+ };
1305
+ NewCrossOriginProtection: {
1306
+ kind: "function";
1307
+ };
1308
+ Dir: {
1309
+ kind: "type";
1310
+ members: {
1311
+ Open: {
1312
+ kind: "method";
1313
+ };
1314
+ };
1315
+ };
1316
+ File: {
1317
+ kind: "interface";
1318
+ members: {
1319
+ Closer: {
1320
+ kind: "embed";
1321
+ type: () => any;
1322
+ };
1323
+ Reader: {
1324
+ kind: "embed";
1325
+ type: () => any;
1326
+ };
1327
+ Seeker: {
1328
+ kind: "embed";
1329
+ type: () => any;
1330
+ };
1331
+ Readdir: {
1332
+ kind: "field";
1333
+ };
1334
+ Stat: {
1335
+ kind: "field";
1336
+ };
1337
+ };
1338
+ };
1339
+ FileSystem: {
1340
+ kind: "interface";
1341
+ members: {
1342
+ Open: {
1343
+ kind: "field";
1344
+ };
1345
+ };
1346
+ };
1347
+ FS: {
1348
+ kind: "function";
1349
+ };
1350
+ Flusher: {
1351
+ kind: "interface";
1352
+ members: {
1353
+ Flush: {
1354
+ kind: "field";
1355
+ };
1356
+ };
1357
+ };
1358
+ HTTP2Config: {
1359
+ kind: "struct";
1360
+ members: {
1361
+ MaxConcurrentStreams: {
1362
+ kind: "field";
1363
+ };
1364
+ MaxDecoderHeaderTableSize: {
1365
+ kind: "field";
1366
+ };
1367
+ MaxEncoderHeaderTableSize: {
1368
+ kind: "field";
1369
+ };
1370
+ MaxReadFrameSize: {
1371
+ kind: "field";
1372
+ };
1373
+ MaxReceiveBufferPerConnection: {
1374
+ kind: "field";
1375
+ };
1376
+ MaxReceiveBufferPerStream: {
1377
+ kind: "field";
1378
+ };
1379
+ SendPingTimeout: {
1380
+ kind: "field";
1381
+ };
1382
+ PingTimeout: {
1383
+ kind: "field";
1384
+ };
1385
+ WriteByteTimeout: {
1386
+ kind: "field";
1387
+ };
1388
+ CountError: {
1389
+ kind: "field";
1390
+ };
1391
+ };
1392
+ };
1393
+ Handler: {
1394
+ kind: "interface";
1395
+ members: {
1396
+ ServeHTTP: {
1397
+ kind: "field";
1398
+ };
1399
+ };
1400
+ };
1401
+ AllowQuerySemicolons: {
1402
+ kind: "function";
1403
+ };
1404
+ FileServer: {
1405
+ kind: "function";
1406
+ };
1407
+ FileServerFS: {
1408
+ kind: "function";
1409
+ };
1410
+ MaxBytesHandler: {
1411
+ kind: "function";
1412
+ };
1413
+ NotFoundHandler: {
1414
+ kind: "function";
1415
+ };
1416
+ RedirectHandler: {
1417
+ kind: "function";
1418
+ };
1419
+ StripPrefix: {
1420
+ kind: "function";
1421
+ };
1422
+ TimeoutHandler: {
1423
+ kind: "function";
1424
+ };
1425
+ HandlerFunc: {
1426
+ kind: "type";
1427
+ members: {
1428
+ ServeHTTP: {
1429
+ kind: "method";
1430
+ };
1431
+ };
1432
+ };
1433
+ Header: {
1434
+ kind: "type";
1435
+ members: {
1436
+ Add: {
1437
+ kind: "method";
1438
+ };
1439
+ Clone: {
1440
+ kind: "method";
1441
+ };
1442
+ Del: {
1443
+ kind: "method";
1444
+ };
1445
+ Get: {
1446
+ kind: "method";
1447
+ };
1448
+ Set: {
1449
+ kind: "method";
1450
+ };
1451
+ Values: {
1452
+ kind: "method";
1453
+ };
1454
+ Write: {
1455
+ kind: "method";
1456
+ };
1457
+ WriteSubset: {
1458
+ kind: "method";
1459
+ };
1460
+ };
1461
+ };
1462
+ Hijacker: {
1463
+ kind: "interface";
1464
+ members: {
1465
+ Hijack: {
1466
+ kind: "field";
1467
+ };
1468
+ };
1469
+ };
1470
+ MaxBytesError: {
1471
+ kind: "struct";
1472
+ members: {
1473
+ Error: {
1474
+ kind: "method";
1475
+ };
1476
+ };
1477
+ };
1478
+ Protocols: {
1479
+ kind: "struct";
1480
+ members: {
1481
+ HTTP1: {
1482
+ kind: "method";
1483
+ };
1484
+ HTTP2: {
1485
+ kind: "method";
1486
+ };
1487
+ SetHTTP1: {
1488
+ kind: "method";
1489
+ };
1490
+ SetHTTP2: {
1491
+ kind: "method";
1492
+ };
1493
+ SetUnencryptedHTTP2: {
1494
+ kind: "method";
1495
+ };
1496
+ String: {
1497
+ kind: "method";
1498
+ };
1499
+ UnencryptedHTTP2: {
1500
+ kind: "method";
1501
+ };
1502
+ };
1503
+ };
1504
+ PushOptions: {
1505
+ kind: "struct";
1506
+ members: {
1507
+ Method: {
1508
+ kind: "field";
1509
+ };
1510
+ Header: {
1511
+ kind: "field";
1512
+ };
1513
+ };
1514
+ };
1515
+ Pusher: {
1516
+ kind: "interface";
1517
+ members: {
1518
+ Push: {
1519
+ kind: "field";
1520
+ };
1521
+ };
1522
+ };
1523
+ Request: {
1524
+ kind: "struct";
1525
+ members: {
1526
+ Method: {
1527
+ kind: "field";
1528
+ };
1529
+ URL: {
1530
+ kind: "field";
1531
+ };
1532
+ Proto: {
1533
+ kind: "field";
1534
+ };
1535
+ ProtoMajor: {
1536
+ kind: "field";
1537
+ };
1538
+ ProtoMinor: {
1539
+ kind: "field";
1540
+ };
1541
+ Header: {
1542
+ kind: "field";
1543
+ };
1544
+ Body: {
1545
+ kind: "field";
1546
+ };
1547
+ GetBody: {
1548
+ kind: "field";
1549
+ };
1550
+ ContentLength: {
1551
+ kind: "field";
1552
+ };
1553
+ TransferEncoding: {
1554
+ kind: "field";
1555
+ };
1556
+ Close: {
1557
+ kind: "field";
1558
+ };
1559
+ Host: {
1560
+ kind: "field";
1561
+ };
1562
+ Form: {
1563
+ kind: "field";
1564
+ };
1565
+ PostForm: {
1566
+ kind: "field";
1567
+ };
1568
+ MultipartForm: {
1569
+ kind: "field";
1570
+ };
1571
+ Trailer: {
1572
+ kind: "field";
1573
+ };
1574
+ RemoteAddr: {
1575
+ kind: "field";
1576
+ };
1577
+ RequestURI: {
1578
+ kind: "field";
1579
+ };
1580
+ TLS: {
1581
+ kind: "field";
1582
+ };
1583
+ Cancel: {
1584
+ kind: "field";
1585
+ };
1586
+ Response: {
1587
+ kind: "field";
1588
+ };
1589
+ Pattern: {
1590
+ kind: "field";
1591
+ };
1592
+ AddCookie: {
1593
+ kind: "method";
1594
+ };
1595
+ BasicAuth: {
1596
+ kind: "method";
1597
+ };
1598
+ Clone: {
1599
+ kind: "method";
1600
+ };
1601
+ Context: {
1602
+ kind: "method";
1603
+ };
1604
+ Cookie: {
1605
+ kind: "method";
1606
+ };
1607
+ Cookies: {
1608
+ kind: "method";
1609
+ };
1610
+ CookiesNamed: {
1611
+ kind: "method";
1612
+ };
1613
+ FormFile: {
1614
+ kind: "method";
1615
+ };
1616
+ FormValue: {
1617
+ kind: "method";
1618
+ };
1619
+ MultipartReader: {
1620
+ kind: "method";
1621
+ };
1622
+ ParseForm: {
1623
+ kind: "method";
1624
+ };
1625
+ ParseMultipartForm: {
1626
+ kind: "method";
1627
+ };
1628
+ PathValue: {
1629
+ kind: "method";
1630
+ };
1631
+ PostFormValue: {
1632
+ kind: "method";
1633
+ };
1634
+ ProtoAtLeast: {
1635
+ kind: "method";
1636
+ };
1637
+ Referer: {
1638
+ kind: "method";
1639
+ };
1640
+ SetBasicAuth: {
1641
+ kind: "method";
1642
+ };
1643
+ SetPathValue: {
1644
+ kind: "method";
1645
+ };
1646
+ UserAgent: {
1647
+ kind: "method";
1648
+ };
1649
+ WithContext: {
1650
+ kind: "method";
1651
+ };
1652
+ Write: {
1653
+ kind: "method";
1654
+ };
1655
+ WriteProxy: {
1656
+ kind: "method";
1657
+ };
1658
+ };
1659
+ };
1660
+ NewRequest: {
1661
+ kind: "function";
1662
+ };
1663
+ NewRequestWithContext: {
1664
+ kind: "function";
1665
+ };
1666
+ ReadRequest: {
1667
+ kind: "function";
1668
+ };
1669
+ Response: {
1670
+ kind: "struct";
1671
+ members: {
1672
+ Status: {
1673
+ kind: "field";
1674
+ };
1675
+ StatusCode: {
1676
+ kind: "field";
1677
+ };
1678
+ Proto: {
1679
+ kind: "field";
1680
+ };
1681
+ ProtoMajor: {
1682
+ kind: "field";
1683
+ };
1684
+ ProtoMinor: {
1685
+ kind: "field";
1686
+ };
1687
+ Header: {
1688
+ kind: "field";
1689
+ };
1690
+ Body: {
1691
+ kind: "field";
1692
+ };
1693
+ ContentLength: {
1694
+ kind: "field";
1695
+ };
1696
+ TransferEncoding: {
1697
+ kind: "field";
1698
+ };
1699
+ Close: {
1700
+ kind: "field";
1701
+ };
1702
+ Uncompressed: {
1703
+ kind: "field";
1704
+ };
1705
+ Trailer: {
1706
+ kind: "field";
1707
+ };
1708
+ Request: {
1709
+ kind: "field";
1710
+ };
1711
+ TLS: {
1712
+ kind: "field";
1713
+ };
1714
+ Cookies: {
1715
+ kind: "method";
1716
+ };
1717
+ Location: {
1718
+ kind: "method";
1719
+ };
1720
+ ProtoAtLeast: {
1721
+ kind: "method";
1722
+ };
1723
+ Write: {
1724
+ kind: "method";
1725
+ };
1726
+ };
1727
+ };
1728
+ Get: {
1729
+ kind: "function";
1730
+ };
1731
+ Head: {
1732
+ kind: "function";
1733
+ };
1734
+ Post: {
1735
+ kind: "function";
1736
+ };
1737
+ PostForm: {
1738
+ kind: "function";
1739
+ };
1740
+ ReadResponse: {
1741
+ kind: "function";
1742
+ };
1743
+ ResponseController: {
1744
+ kind: "struct";
1745
+ members: {
1746
+ EnableFullDuplex: {
1747
+ kind: "method";
1748
+ };
1749
+ Flush: {
1750
+ kind: "method";
1751
+ };
1752
+ Hijack: {
1753
+ kind: "method";
1754
+ };
1755
+ SetReadDeadline: {
1756
+ kind: "method";
1757
+ };
1758
+ SetWriteDeadline: {
1759
+ kind: "method";
1760
+ };
1761
+ };
1762
+ };
1763
+ NewResponseController: {
1764
+ kind: "function";
1765
+ };
1766
+ ResponseWriter: {
1767
+ kind: "interface";
1768
+ members: {
1769
+ Header: {
1770
+ kind: "field";
1771
+ };
1772
+ Write: {
1773
+ kind: "field";
1774
+ };
1775
+ WriteHeader: {
1776
+ kind: "field";
1777
+ };
1778
+ };
1779
+ };
1780
+ RoundTripper: {
1781
+ kind: "interface";
1782
+ members: {
1783
+ RoundTrip: {
1784
+ kind: "field";
1785
+ };
1786
+ };
1787
+ };
1788
+ DefaultTransport: {
1789
+ kind: "var";
1790
+ };
1791
+ NewFileTransport: {
1792
+ kind: "function";
1793
+ };
1794
+ SameSite: {
1795
+ kind: "type";
1796
+ members: {};
1797
+ };
1798
+ SameSiteDefaultMode: {
1799
+ kind: "var";
1800
+ };
1801
+ SameSiteLaxMode: {
1802
+ kind: "var";
1803
+ };
1804
+ SameSiteStrictMode: {
1805
+ kind: "var";
1806
+ };
1807
+ SameSiteNoneMode: {
1808
+ kind: "var";
1809
+ };
1810
+ ServeMux: {
1811
+ kind: "struct";
1812
+ members: {
1813
+ Handle: {
1814
+ kind: "method";
1815
+ };
1816
+ HandleFunc: {
1817
+ kind: "method";
1818
+ };
1819
+ Handler: {
1820
+ kind: "method";
1821
+ };
1822
+ ServeHTTP: {
1823
+ kind: "method";
1824
+ };
1825
+ };
1826
+ };
1827
+ NewServeMux: {
1828
+ kind: "function";
1829
+ };
1830
+ Server: {
1831
+ kind: "struct";
1832
+ members: {
1833
+ Addr: {
1834
+ kind: "field";
1835
+ };
1836
+ Handler: {
1837
+ kind: "field";
1838
+ };
1839
+ DisableGeneralOptionsHandler: {
1840
+ kind: "field";
1841
+ };
1842
+ TLSConfig: {
1843
+ kind: "field";
1844
+ };
1845
+ ReadTimeout: {
1846
+ kind: "field";
1847
+ };
1848
+ ReadHeaderTimeout: {
1849
+ kind: "field";
1850
+ };
1851
+ WriteTimeout: {
1852
+ kind: "field";
1853
+ };
1854
+ IdleTimeout: {
1855
+ kind: "field";
1856
+ };
1857
+ MaxHeaderBytes: {
1858
+ kind: "field";
1859
+ };
1860
+ TLSNextProto: {
1861
+ kind: "field";
1862
+ };
1863
+ ConnState: {
1864
+ kind: "field";
1865
+ };
1866
+ ErrorLog: {
1867
+ kind: "field";
1868
+ };
1869
+ BaseContext: {
1870
+ kind: "field";
1871
+ };
1872
+ ConnContext: {
1873
+ kind: "field";
1874
+ };
1875
+ HTTP2: {
1876
+ kind: "field";
1877
+ };
1878
+ Protocols: {
1879
+ kind: "field";
1880
+ };
1881
+ Close: {
1882
+ kind: "method";
1883
+ };
1884
+ ListenAndServe: {
1885
+ kind: "method";
1886
+ };
1887
+ ListenAndServeTLS: {
1888
+ kind: "method";
1889
+ };
1890
+ RegisterOnShutdown: {
1891
+ kind: "method";
1892
+ };
1893
+ Serve: {
1894
+ kind: "method";
1895
+ };
1896
+ ServeTLS: {
1897
+ kind: "method";
1898
+ };
1899
+ SetKeepAlivesEnabled: {
1900
+ kind: "method";
1901
+ };
1902
+ Shutdown: {
1903
+ kind: "method";
1904
+ };
1905
+ };
1906
+ };
1907
+ Transport: {
1908
+ kind: "struct";
1909
+ members: {
1910
+ Proxy: {
1911
+ kind: "field";
1912
+ };
1913
+ OnProxyConnectResponse: {
1914
+ kind: "field";
1915
+ };
1916
+ DialContext: {
1917
+ kind: "field";
1918
+ };
1919
+ Dial: {
1920
+ kind: "field";
1921
+ };
1922
+ DialTLSContext: {
1923
+ kind: "field";
1924
+ };
1925
+ DialTLS: {
1926
+ kind: "field";
1927
+ };
1928
+ TLSClientConfig: {
1929
+ kind: "field";
1930
+ };
1931
+ TLSHandshakeTimeout: {
1932
+ kind: "field";
1933
+ };
1934
+ DisableKeepAlives: {
1935
+ kind: "field";
1936
+ };
1937
+ DisableCompression: {
1938
+ kind: "field";
1939
+ };
1940
+ MaxIdleConns: {
1941
+ kind: "field";
1942
+ };
1943
+ MaxIdleConnsPerHost: {
1944
+ kind: "field";
1945
+ };
1946
+ MaxConnsPerHost: {
1947
+ kind: "field";
1948
+ };
1949
+ IdleConnTimeout: {
1950
+ kind: "field";
1951
+ };
1952
+ ResponseHeaderTimeout: {
1953
+ kind: "field";
1954
+ };
1955
+ ExpectContinueTimeout: {
1956
+ kind: "field";
1957
+ };
1958
+ TLSNextProto: {
1959
+ kind: "field";
1960
+ };
1961
+ ProxyConnectHeader: {
1962
+ kind: "field";
1963
+ };
1964
+ GetProxyConnectHeader: {
1965
+ kind: "field";
1966
+ };
1967
+ MaxResponseHeaderBytes: {
1968
+ kind: "field";
1969
+ };
1970
+ WriteBufferSize: {
1971
+ kind: "field";
1972
+ };
1973
+ ReadBufferSize: {
1974
+ kind: "field";
1975
+ };
1976
+ ForceAttemptHTTP2: {
1977
+ kind: "field";
1978
+ };
1979
+ HTTP2: {
1980
+ kind: "field";
1981
+ };
1982
+ Protocols: {
1983
+ kind: "field";
1984
+ };
1985
+ CancelRequest: {
1986
+ kind: "method";
1987
+ };
1988
+ Clone: {
1989
+ kind: "method";
1990
+ };
1991
+ CloseIdleConnections: {
1992
+ kind: "method";
1993
+ };
1994
+ RegisterProtocol: {
1995
+ kind: "method";
1996
+ };
1997
+ RoundTrip: {
1998
+ kind: "method";
1999
+ };
2000
+ };
2001
+ };
2002
+ };
2003
+ };
2004
+ };
2005
+ }>;
2006
+ time: import("../create-module.js").LibraryFrom<{
2007
+ kind: "package";
2008
+ members: {
2009
+ After: {
2010
+ kind: "function";
2011
+ };
2012
+ AfterFunc: {
2013
+ kind: "function";
2014
+ };
2015
+ Date: {
2016
+ kind: "function";
2017
+ };
2018
+ FixedZone: {
2019
+ kind: "function";
2020
+ };
2021
+ LoadLocation: {
2022
+ kind: "function";
2023
+ };
2024
+ LoadLocationFromTZData: {
2025
+ kind: "function";
2026
+ };
2027
+ NewTicker: {
2028
+ kind: "function";
2029
+ };
2030
+ NewTimer: {
2031
+ kind: "function";
2032
+ };
2033
+ Now: {
2034
+ kind: "function";
2035
+ };
2036
+ Parse: {
2037
+ kind: "function";
2038
+ };
2039
+ ParseDuration: {
2040
+ kind: "function";
2041
+ };
2042
+ ParseInLocation: {
2043
+ kind: "function";
2044
+ };
2045
+ Since: {
2046
+ kind: "function";
2047
+ };
2048
+ Sleep: {
2049
+ kind: "function";
2050
+ };
2051
+ Tick: {
2052
+ kind: "function";
2053
+ };
2054
+ Unix: {
2055
+ kind: "function";
2056
+ };
2057
+ UnixMicro: {
2058
+ kind: "function";
2059
+ };
2060
+ UnixMilli: {
2061
+ kind: "function";
2062
+ };
2063
+ Until: {
2064
+ kind: "function";
2065
+ };
2066
+ Layout: {
2067
+ kind: "var";
2068
+ };
2069
+ ANSIC: {
2070
+ kind: "var";
2071
+ };
2072
+ UnixDate: {
2073
+ kind: "var";
2074
+ };
2075
+ RubyDate: {
2076
+ kind: "var";
2077
+ };
2078
+ RFC822: {
2079
+ kind: "var";
2080
+ };
2081
+ RFC822Z: {
2082
+ kind: "var";
2083
+ };
2084
+ RFC850: {
2085
+ kind: "var";
2086
+ };
2087
+ RFC1123: {
2088
+ kind: "var";
2089
+ };
2090
+ RFC1123Z: {
2091
+ kind: "var";
2092
+ };
2093
+ RFC3339: {
2094
+ kind: "var";
2095
+ };
2096
+ RFC3339Nano: {
2097
+ kind: "var";
2098
+ };
2099
+ Kitchen: {
2100
+ kind: "var";
2101
+ };
2102
+ Stamp: {
2103
+ kind: "var";
2104
+ };
2105
+ StampMilli: {
2106
+ kind: "var";
2107
+ };
2108
+ StampMicro: {
2109
+ kind: "var";
2110
+ };
2111
+ StampNano: {
2112
+ kind: "var";
2113
+ };
2114
+ DateTime: {
2115
+ kind: "var";
2116
+ };
2117
+ DateOnly: {
2118
+ kind: "var";
2119
+ };
2120
+ TimeOnly: {
2121
+ kind: "var";
2122
+ };
2123
+ Nanosecond: {
2124
+ kind: "var";
2125
+ };
2126
+ Microsecond: {
2127
+ kind: "var";
2128
+ };
2129
+ Millisecond: {
2130
+ kind: "var";
2131
+ };
2132
+ Second: {
2133
+ kind: "var";
2134
+ };
2135
+ Minute: {
2136
+ kind: "var";
2137
+ };
2138
+ Hour: {
2139
+ kind: "var";
2140
+ };
2141
+ January: {
2142
+ kind: "var";
2143
+ };
2144
+ February: {
2145
+ kind: "var";
2146
+ };
2147
+ March: {
2148
+ kind: "var";
2149
+ };
2150
+ April: {
2151
+ kind: "var";
2152
+ };
2153
+ May: {
2154
+ kind: "var";
2155
+ };
2156
+ June: {
2157
+ kind: "var";
2158
+ };
2159
+ July: {
2160
+ kind: "var";
2161
+ };
2162
+ August: {
2163
+ kind: "var";
2164
+ };
2165
+ September: {
2166
+ kind: "var";
2167
+ };
2168
+ October: {
2169
+ kind: "var";
2170
+ };
2171
+ November: {
2172
+ kind: "var";
2173
+ };
2174
+ December: {
2175
+ kind: "var";
2176
+ };
2177
+ Sunday: {
2178
+ kind: "var";
2179
+ };
2180
+ Monday: {
2181
+ kind: "var";
2182
+ };
2183
+ Tuesday: {
2184
+ kind: "var";
2185
+ };
2186
+ Wednesday: {
2187
+ kind: "var";
2188
+ };
2189
+ Thursday: {
2190
+ kind: "var";
2191
+ };
2192
+ Friday: {
2193
+ kind: "var";
2194
+ };
2195
+ Saturday: {
2196
+ kind: "var";
2197
+ };
2198
+ UTC: {
2199
+ kind: "var";
2200
+ };
2201
+ Local: {
2202
+ kind: "var";
2203
+ };
2204
+ Duration: {
2205
+ kind: "type";
2206
+ members: {
2207
+ Abs: {
2208
+ kind: "field";
2209
+ };
2210
+ Hours: {
2211
+ kind: "field";
2212
+ };
2213
+ Microseconds: {
2214
+ kind: "field";
2215
+ };
2216
+ Milliseconds: {
2217
+ kind: "field";
2218
+ };
2219
+ Minutes: {
2220
+ kind: "field";
2221
+ };
2222
+ Nanoseconds: {
2223
+ kind: "field";
2224
+ };
2225
+ Round: {
2226
+ kind: "field";
2227
+ };
2228
+ Seconds: {
2229
+ kind: "field";
2230
+ };
2231
+ String: {
2232
+ kind: "field";
2233
+ };
2234
+ Truncate: {
2235
+ kind: "field";
2236
+ };
2237
+ };
2238
+ };
2239
+ Location: {
2240
+ kind: "type";
2241
+ members: {
2242
+ String: {
2243
+ kind: "field";
2244
+ };
2245
+ };
2246
+ };
2247
+ Month: {
2248
+ kind: "type";
2249
+ members: {
2250
+ String: {
2251
+ kind: "field";
2252
+ };
2253
+ };
2254
+ };
2255
+ ParseError: {
2256
+ kind: "type";
2257
+ members: {
2258
+ Layout: {
2259
+ kind: "field";
2260
+ };
2261
+ Value: {
2262
+ kind: "field";
2263
+ };
2264
+ LayoutElem: {
2265
+ kind: "field";
2266
+ };
2267
+ ValueElem: {
2268
+ kind: "field";
2269
+ };
2270
+ Message: {
2271
+ kind: "field";
2272
+ };
2273
+ Error: {
2274
+ kind: "field";
2275
+ };
2276
+ };
2277
+ };
2278
+ Ticker: {
2279
+ kind: "type";
2280
+ members: {
2281
+ C: {
2282
+ kind: "field";
2283
+ };
2284
+ Reset: {
2285
+ kind: "field";
2286
+ };
2287
+ Stop: {
2288
+ kind: "field";
2289
+ };
2290
+ };
2291
+ };
2292
+ Time: {
2293
+ kind: "type";
2294
+ members: {
2295
+ Add: {
2296
+ kind: "field";
2297
+ };
2298
+ AddDate: {
2299
+ kind: "field";
2300
+ };
2301
+ After: {
2302
+ kind: "field";
2303
+ };
2304
+ AppendBinary: {
2305
+ kind: "field";
2306
+ };
2307
+ AppendFormat: {
2308
+ kind: "field";
2309
+ };
2310
+ AppendText: {
2311
+ kind: "field";
2312
+ };
2313
+ Before: {
2314
+ kind: "field";
2315
+ };
2316
+ Clock: {
2317
+ kind: "field";
2318
+ };
2319
+ Compare: {
2320
+ kind: "field";
2321
+ };
2322
+ Date: {
2323
+ kind: "field";
2324
+ };
2325
+ Day: {
2326
+ kind: "field";
2327
+ };
2328
+ Equal: {
2329
+ kind: "field";
2330
+ };
2331
+ Format: {
2332
+ kind: "field";
2333
+ };
2334
+ GoString: {
2335
+ kind: "field";
2336
+ };
2337
+ GobDecode: {
2338
+ kind: "field";
2339
+ };
2340
+ GobEncode: {
2341
+ kind: "field";
2342
+ };
2343
+ Hour: {
2344
+ kind: "field";
2345
+ };
2346
+ ISOWeek: {
2347
+ kind: "field";
2348
+ };
2349
+ In: {
2350
+ kind: "field";
2351
+ };
2352
+ IsDST: {
2353
+ kind: "field";
2354
+ };
2355
+ IsZero: {
2356
+ kind: "field";
2357
+ };
2358
+ Local: {
2359
+ kind: "field";
2360
+ };
2361
+ Location: {
2362
+ kind: "field";
2363
+ };
2364
+ MarshalBinary: {
2365
+ kind: "field";
2366
+ };
2367
+ MarshalJSON: {
2368
+ kind: "field";
2369
+ };
2370
+ MarshalText: {
2371
+ kind: "field";
2372
+ };
2373
+ Minute: {
2374
+ kind: "field";
2375
+ };
2376
+ Month: {
2377
+ kind: "field";
2378
+ };
2379
+ Nanosecond: {
2380
+ kind: "field";
2381
+ };
2382
+ Round: {
2383
+ kind: "field";
2384
+ };
2385
+ Second: {
2386
+ kind: "field";
2387
+ };
2388
+ String: {
2389
+ kind: "field";
2390
+ };
2391
+ Sub: {
2392
+ kind: "field";
2393
+ };
2394
+ Truncate: {
2395
+ kind: "field";
2396
+ };
2397
+ UTC: {
2398
+ kind: "field";
2399
+ };
2400
+ Unix: {
2401
+ kind: "field";
2402
+ };
2403
+ UnixMicro: {
2404
+ kind: "field";
2405
+ };
2406
+ UnixMilli: {
2407
+ kind: "field";
2408
+ };
2409
+ UnixNano: {
2410
+ kind: "field";
2411
+ };
2412
+ UnmarshalBinary: {
2413
+ kind: "field";
2414
+ };
2415
+ UnmarshalJSON: {
2416
+ kind: "field";
2417
+ };
2418
+ UnmarshalText: {
2419
+ kind: "field";
2420
+ };
2421
+ Weekday: {
2422
+ kind: "field";
2423
+ };
2424
+ Year: {
2425
+ kind: "field";
2426
+ };
2427
+ YearDay: {
2428
+ kind: "field";
2429
+ };
2430
+ Zone: {
2431
+ kind: "field";
2432
+ };
2433
+ ZoneBounds: {
2434
+ kind: "field";
2435
+ };
2436
+ };
2437
+ };
2438
+ Timer: {
2439
+ kind: "type";
2440
+ members: {
2441
+ C: {
2442
+ kind: "field";
2443
+ };
2444
+ Reset: {
2445
+ kind: "field";
2446
+ };
2447
+ Stop: {
2448
+ kind: "field";
2449
+ };
2450
+ };
2451
+ };
2452
+ Weekday: {
2453
+ kind: "type";
2454
+ members: {
2455
+ String: {
2456
+ kind: "field";
2457
+ };
2458
+ };
2459
+ };
2460
+ };
2461
+ }>;
2462
+ }
2463
+ ```