@alloy-js/csharp 0.17.0 → 0.18.0-dev.10

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 (109) hide show
  1. package/dist/src/components/ClassDeclaration.d.ts +57 -0
  2. package/dist/src/components/ClassDeclaration.d.ts.map +1 -0
  3. package/dist/src/components/{Class.js → ClassDeclaration.js} +42 -53
  4. package/dist/src/components/ClassMethod.d.ts +25 -0
  5. package/dist/src/components/ClassMethod.d.ts.map +1 -0
  6. package/dist/src/components/ClassMethod.js +60 -0
  7. package/dist/src/components/EnumDeclaration.d.ts +34 -0
  8. package/dist/src/components/EnumDeclaration.d.ts.map +1 -0
  9. package/dist/src/components/{Enum.js → EnumDeclaration.js} +25 -5
  10. package/dist/src/components/doc/comment.d.ts +70 -0
  11. package/dist/src/components/doc/comment.d.ts.map +1 -0
  12. package/dist/src/components/doc/comment.js +88 -0
  13. package/dist/src/components/doc/comment.test.d.ts +2 -0
  14. package/dist/src/components/doc/comment.test.d.ts.map +1 -0
  15. package/dist/src/components/doc/comment.test.js +348 -0
  16. package/dist/src/components/doc/from-markdown.d.ts +6 -0
  17. package/dist/src/components/doc/from-markdown.d.ts.map +1 -0
  18. package/dist/src/components/doc/from-markdown.js +58 -0
  19. package/dist/src/components/doc/from-markdown.test.d.ts +2 -0
  20. package/dist/src/components/doc/from-markdown.test.d.ts.map +1 -0
  21. package/dist/src/components/doc/from-markdown.test.js +83 -0
  22. package/dist/src/components/index.d.ts +7 -2
  23. package/dist/src/components/index.d.ts.map +1 -1
  24. package/dist/src/components/index.js +7 -2
  25. package/dist/src/components/interface/declaration.d.ts +34 -0
  26. package/dist/src/components/interface/declaration.d.ts.map +1 -0
  27. package/dist/src/components/interface/declaration.js +90 -0
  28. package/dist/src/components/interface/declaration.test.d.ts +2 -0
  29. package/dist/src/components/interface/declaration.test.d.ts.map +1 -0
  30. package/dist/src/components/interface/declaration.test.js +69 -0
  31. package/dist/src/components/interface/method.d.ts +18 -0
  32. package/dist/src/components/interface/method.d.ts.map +1 -0
  33. package/dist/src/components/interface/method.js +59 -0
  34. package/dist/src/components/interface/method.test.d.ts +2 -0
  35. package/dist/src/components/interface/method.test.d.ts.map +1 -0
  36. package/dist/src/components/interface/method.test.js +131 -0
  37. package/dist/src/components/interface/property.d.ts +21 -0
  38. package/dist/src/components/interface/property.d.ts.map +1 -0
  39. package/dist/src/components/interface/property.js +59 -0
  40. package/dist/src/components/interface/property.test.d.ts +2 -0
  41. package/dist/src/components/interface/property.test.d.ts.map +1 -0
  42. package/dist/src/components/interface/property.test.js +165 -0
  43. package/dist/src/components/stc/index.d.ts +2 -2
  44. package/dist/src/components/stc/index.d.ts.map +1 -1
  45. package/dist/src/components/stc/index.js +2 -2
  46. package/dist/src/modifiers.d.ts +13 -4
  47. package/dist/src/modifiers.d.ts.map +1 -1
  48. package/dist/src/modifiers.js +13 -27
  49. package/dist/src/name-policy.d.ts +1 -1
  50. package/dist/src/name-policy.d.ts.map +1 -1
  51. package/dist/src/name-policy.js +1 -0
  52. package/dist/test/class-declaration.test.d.ts +2 -0
  53. package/dist/test/class-declaration.test.d.ts.map +1 -0
  54. package/dist/test/{class.test.js → class-declaration.test.js} +123 -73
  55. package/dist/test/class-method.test.d.ts +2 -0
  56. package/dist/test/class-method.test.d.ts.map +1 -0
  57. package/dist/test/class-method.test.js +161 -0
  58. package/dist/test/enum.test.js +12 -12
  59. package/dist/test/namespace.test.js +8 -8
  60. package/dist/test/project-directory.test.d.ts +2 -0
  61. package/dist/test/project-directory.test.d.ts.map +1 -0
  62. package/dist/test/{projectdirectory.test.js → project-directory.test.js} +8 -8
  63. package/dist/test/sourcefile.test.js +4 -4
  64. package/dist/test/using.test.js +9 -9
  65. package/dist/test/utils.d.ts +3 -0
  66. package/dist/test/utils.d.ts.map +1 -1
  67. package/dist/test/utils.js +15 -0
  68. package/dist/test/vitest.setup.d.ts +2 -0
  69. package/dist/test/vitest.setup.d.ts.map +1 -0
  70. package/dist/test/vitest.setup.js +1 -0
  71. package/dist/tsconfig.tsbuildinfo +1 -1
  72. package/package.json +7 -6
  73. package/src/components/{Class.tsx → ClassDeclaration.tsx} +68 -66
  74. package/src/components/ClassMethod.tsx +94 -0
  75. package/src/components/{Enum.tsx → EnumDeclaration.tsx} +30 -6
  76. package/src/components/doc/comment.test.tsx +337 -0
  77. package/src/components/doc/comment.tsx +152 -0
  78. package/src/components/doc/from-markdown.test.tsx +103 -0
  79. package/src/components/doc/from-markdown.tsx +58 -0
  80. package/src/components/index.ts +7 -2
  81. package/src/components/interface/declaration.test.tsx +56 -0
  82. package/src/components/interface/declaration.tsx +109 -0
  83. package/src/components/interface/method.test.tsx +120 -0
  84. package/src/components/interface/method.tsx +82 -0
  85. package/src/components/interface/property.test.tsx +144 -0
  86. package/src/components/interface/property.tsx +90 -0
  87. package/src/components/stc/index.ts +2 -2
  88. package/src/modifiers.ts +32 -37
  89. package/src/name-policy.ts +2 -0
  90. package/temp/api.json +3275 -298
  91. package/test/{class.test.tsx → class-declaration.test.tsx} +103 -99
  92. package/test/class-method.test.tsx +147 -0
  93. package/test/enum.test.tsx +11 -11
  94. package/test/namespace.test.tsx +4 -4
  95. package/test/{projectdirectory.test.tsx → project-directory.test.tsx} +4 -4
  96. package/test/sourcefile.test.tsx +2 -2
  97. package/test/using.test.tsx +9 -9
  98. package/test/utils.tsx +9 -0
  99. package/test/vitest.setup.ts +1 -0
  100. package/tsconfig.json +2 -1
  101. package/vitest.config.ts +3 -0
  102. package/dist/src/components/Class.d.ts +0 -36
  103. package/dist/src/components/Class.d.ts.map +0 -1
  104. package/dist/src/components/Enum.d.ts +0 -15
  105. package/dist/src/components/Enum.d.ts.map +0 -1
  106. package/dist/test/class.test.d.ts +0 -2
  107. package/dist/test/class.test.d.ts.map +0 -1
  108. package/dist/test/projectdirectory.test.d.ts +0 -2
  109. package/dist/test/projectdirectory.test.d.ts.map +0 -1
package/temp/api.json CHANGED
@@ -173,77 +173,157 @@
173
173
  "preserveMemberOrder": false,
174
174
  "members": [
175
175
  {
176
- "kind": "TypeAlias",
177
- "canonicalReference": "@alloy-js/csharp!AccessModifier:type",
178
- "docComment": "",
176
+ "kind": "Interface",
177
+ "canonicalReference": "@alloy-js/csharp!AccessModifiers:interface",
178
+ "docComment": "/**\n * Access modifiers.\n */\n",
179
179
  "excerptTokens": [
180
180
  {
181
181
  "kind": "Content",
182
- "text": "export type AccessModifier = "
183
- },
184
- {
185
- "kind": "Content",
186
- "text": "\"public\" | \"protected\" | \"private\" | \"internal\" | \"protected-internal\" | \"private-protected\" | \"file\""
187
- },
188
- {
189
- "kind": "Content",
190
- "text": ";"
182
+ "text": "export interface AccessModifiers "
191
183
  }
192
184
  ],
193
185
  "fileUrlPath": "src/modifiers.ts",
194
186
  "releaseTag": "Public",
195
- "name": "AccessModifier",
196
- "typeTokenRange": {
197
- "startIndex": 1,
198
- "endIndex": 2
199
- }
200
- },
201
- {
202
- "kind": "Function",
203
- "canonicalReference": "@alloy-js/csharp!Class:function(1)",
204
- "docComment": "",
205
- "excerptTokens": [
187
+ "name": "AccessModifiers",
188
+ "preserveMemberOrder": false,
189
+ "members": [
206
190
  {
207
- "kind": "Content",
208
- "text": "export declare function Class(props: "
191
+ "kind": "PropertySignature",
192
+ "canonicalReference": "@alloy-js/csharp!AccessModifiers#file:member",
193
+ "docComment": "",
194
+ "excerptTokens": [
195
+ {
196
+ "kind": "Content",
197
+ "text": "readonly file?: "
198
+ },
199
+ {
200
+ "kind": "Content",
201
+ "text": "boolean"
202
+ },
203
+ {
204
+ "kind": "Content",
205
+ "text": ";"
206
+ }
207
+ ],
208
+ "isReadonly": true,
209
+ "isOptional": true,
210
+ "releaseTag": "Public",
211
+ "name": "file",
212
+ "propertyTypeTokenRange": {
213
+ "startIndex": 1,
214
+ "endIndex": 2
215
+ }
209
216
  },
210
217
  {
211
- "kind": "Reference",
212
- "text": "ClassProps",
213
- "canonicalReference": "@alloy-js/csharp!ClassProps:interface"
218
+ "kind": "PropertySignature",
219
+ "canonicalReference": "@alloy-js/csharp!AccessModifiers#internal:member",
220
+ "docComment": "",
221
+ "excerptTokens": [
222
+ {
223
+ "kind": "Content",
224
+ "text": "readonly internal?: "
225
+ },
226
+ {
227
+ "kind": "Content",
228
+ "text": "boolean"
229
+ },
230
+ {
231
+ "kind": "Content",
232
+ "text": ";"
233
+ }
234
+ ],
235
+ "isReadonly": true,
236
+ "isOptional": true,
237
+ "releaseTag": "Public",
238
+ "name": "internal",
239
+ "propertyTypeTokenRange": {
240
+ "startIndex": 1,
241
+ "endIndex": 2
242
+ }
214
243
  },
215
244
  {
216
- "kind": "Content",
217
- "text": "): "
245
+ "kind": "PropertySignature",
246
+ "canonicalReference": "@alloy-js/csharp!AccessModifiers#private:member",
247
+ "docComment": "",
248
+ "excerptTokens": [
249
+ {
250
+ "kind": "Content",
251
+ "text": "readonly private?: "
252
+ },
253
+ {
254
+ "kind": "Content",
255
+ "text": "boolean"
256
+ },
257
+ {
258
+ "kind": "Content",
259
+ "text": ";"
260
+ }
261
+ ],
262
+ "isReadonly": true,
263
+ "isOptional": true,
264
+ "releaseTag": "Public",
265
+ "name": "private",
266
+ "propertyTypeTokenRange": {
267
+ "startIndex": 1,
268
+ "endIndex": 2
269
+ }
218
270
  },
219
271
  {
220
- "kind": "Reference",
221
- "text": "core.Children",
222
- "canonicalReference": "@alloy-js/core!Children:type"
272
+ "kind": "PropertySignature",
273
+ "canonicalReference": "@alloy-js/csharp!AccessModifiers#protected:member",
274
+ "docComment": "",
275
+ "excerptTokens": [
276
+ {
277
+ "kind": "Content",
278
+ "text": "readonly protected?: "
279
+ },
280
+ {
281
+ "kind": "Content",
282
+ "text": "boolean"
283
+ },
284
+ {
285
+ "kind": "Content",
286
+ "text": ";"
287
+ }
288
+ ],
289
+ "isReadonly": true,
290
+ "isOptional": true,
291
+ "releaseTag": "Public",
292
+ "name": "protected",
293
+ "propertyTypeTokenRange": {
294
+ "startIndex": 1,
295
+ "endIndex": 2
296
+ }
223
297
  },
224
298
  {
225
- "kind": "Content",
226
- "text": ";"
227
- }
228
- ],
229
- "fileUrlPath": "src/components/Class.tsx",
230
- "returnTypeTokenRange": {
231
- "startIndex": 3,
232
- "endIndex": 4
233
- },
234
- "releaseTag": "Public",
235
- "overloadIndex": 1,
236
- "parameters": [
237
- {
238
- "parameterName": "props",
239
- "parameterTypeTokenRange": {
299
+ "kind": "PropertySignature",
300
+ "canonicalReference": "@alloy-js/csharp!AccessModifiers#public:member",
301
+ "docComment": "",
302
+ "excerptTokens": [
303
+ {
304
+ "kind": "Content",
305
+ "text": "readonly public?: "
306
+ },
307
+ {
308
+ "kind": "Content",
309
+ "text": "boolean"
310
+ },
311
+ {
312
+ "kind": "Content",
313
+ "text": ";"
314
+ }
315
+ ],
316
+ "isReadonly": true,
317
+ "isOptional": true,
318
+ "releaseTag": "Public",
319
+ "name": "public",
320
+ "propertyTypeTokenRange": {
240
321
  "startIndex": 1,
241
322
  "endIndex": 2
242
- },
243
- "isOptional": false
323
+ }
244
324
  }
245
325
  ],
246
- "name": "Class"
326
+ "extendsTokenRanges": []
247
327
  },
248
328
  {
249
329
  "kind": "Function",
@@ -273,7 +353,7 @@
273
353
  "text": ";"
274
354
  }
275
355
  ],
276
- "fileUrlPath": "src/components/Class.tsx",
356
+ "fileUrlPath": "src/components/ClassDeclaration.tsx",
277
357
  "returnTypeTokenRange": {
278
358
  "startIndex": 3,
279
359
  "endIndex": 4
@@ -299,42 +379,23 @@
299
379
  "excerptTokens": [
300
380
  {
301
381
  "kind": "Content",
302
- "text": "export interface ClassConstructorProps "
382
+ "text": "export interface ClassConstructorProps extends "
383
+ },
384
+ {
385
+ "kind": "Reference",
386
+ "text": "AccessModifiers",
387
+ "canonicalReference": "@alloy-js/csharp!AccessModifiers:interface"
388
+ },
389
+ {
390
+ "kind": "Content",
391
+ "text": " "
303
392
  }
304
393
  ],
305
- "fileUrlPath": "src/components/Class.tsx",
394
+ "fileUrlPath": "src/components/ClassDeclaration.tsx",
306
395
  "releaseTag": "Public",
307
396
  "name": "ClassConstructorProps",
308
397
  "preserveMemberOrder": false,
309
398
  "members": [
310
- {
311
- "kind": "PropertySignature",
312
- "canonicalReference": "@alloy-js/csharp!ClassConstructorProps#accessModifier:member",
313
- "docComment": "",
314
- "excerptTokens": [
315
- {
316
- "kind": "Content",
317
- "text": "accessModifier?: "
318
- },
319
- {
320
- "kind": "Reference",
321
- "text": "AccessModifier",
322
- "canonicalReference": "@alloy-js/csharp!AccessModifier:type"
323
- },
324
- {
325
- "kind": "Content",
326
- "text": ";"
327
- }
328
- ],
329
- "isReadonly": false,
330
- "isOptional": true,
331
- "releaseTag": "Public",
332
- "name": "accessModifier",
333
- "propertyTypeTokenRange": {
334
- "startIndex": 1,
335
- "endIndex": 2
336
- }
337
- },
338
399
  {
339
400
  "kind": "PropertySignature",
340
401
  "canonicalReference": "@alloy-js/csharp!ClassConstructorProps#children:member",
@@ -461,21 +522,26 @@
461
522
  }
462
523
  }
463
524
  ],
464
- "extendsTokenRanges": []
525
+ "extendsTokenRanges": [
526
+ {
527
+ "startIndex": 1,
528
+ "endIndex": 2
529
+ }
530
+ ]
465
531
  },
466
532
  {
467
533
  "kind": "Function",
468
- "canonicalReference": "@alloy-js/csharp!ClassMember:function(1)",
469
- "docComment": "",
534
+ "canonicalReference": "@alloy-js/csharp!ClassDeclaration:function(1)",
535
+ "docComment": "/**\n * CSharp class declaration.\n *\n * @example\n * ```tsx\n * <ClassDeclaration public name=\"MyClass\">\n * <ClassMember public name=\"MyField\" type=\"int\" />\n * <ClassConstructor>\n * <Parameter name=\"value\" type=\"int\" />\n * this.MyField = value;\n * </ClassConstructor>\n * </ClassDeclaration>\n * ```\n *\n * This will produce:\n * ```csharp\n * public class MyClass\n * {\n * public int MyField;\n * public MyClass(int value)\n * {\n * this.MyField = value;\n * }\n * }\n * ```\n *\n */\n",
470
536
  "excerptTokens": [
471
537
  {
472
538
  "kind": "Content",
473
- "text": "export declare function ClassMember(props: "
539
+ "text": "export declare function ClassDeclaration(props: "
474
540
  },
475
541
  {
476
542
  "kind": "Reference",
477
- "text": "ClassMemberProps",
478
- "canonicalReference": "@alloy-js/csharp!ClassMemberProps:interface"
543
+ "text": "ClassDeclarationProps",
544
+ "canonicalReference": "@alloy-js/csharp!ClassDeclarationProps:interface"
479
545
  },
480
546
  {
481
547
  "kind": "Content",
@@ -491,7 +557,7 @@
491
557
  "text": ";"
492
558
  }
493
559
  ],
494
- "fileUrlPath": "src/components/Class.tsx",
560
+ "fileUrlPath": "src/components/ClassDeclaration.tsx",
495
561
  "returnTypeTokenRange": {
496
562
  "startIndex": 3,
497
563
  "endIndex": 4
@@ -508,36 +574,76 @@
508
574
  "isOptional": false
509
575
  }
510
576
  ],
511
- "name": "ClassMember"
577
+ "name": "ClassDeclaration"
512
578
  },
513
579
  {
514
580
  "kind": "Interface",
515
- "canonicalReference": "@alloy-js/csharp!ClassMemberProps:interface",
581
+ "canonicalReference": "@alloy-js/csharp!ClassDeclarationProps:interface",
516
582
  "docComment": "",
517
583
  "excerptTokens": [
518
584
  {
519
585
  "kind": "Content",
520
- "text": "export interface ClassMemberProps "
586
+ "text": "export interface ClassDeclarationProps extends "
587
+ },
588
+ {
589
+ "kind": "Reference",
590
+ "text": "Omit",
591
+ "canonicalReference": "!Omit:type"
592
+ },
593
+ {
594
+ "kind": "Content",
595
+ "text": "<"
596
+ },
597
+ {
598
+ "kind": "Reference",
599
+ "text": "core.DeclarationProps",
600
+ "canonicalReference": "@alloy-js/core!DeclarationProps:type"
601
+ },
602
+ {
603
+ "kind": "Content",
604
+ "text": ", \"nameKind\">"
605
+ },
606
+ {
607
+ "kind": "Content",
608
+ "text": ", "
609
+ },
610
+ {
611
+ "kind": "Reference",
612
+ "text": "AccessModifiers",
613
+ "canonicalReference": "@alloy-js/csharp!AccessModifiers:interface"
614
+ },
615
+ {
616
+ "kind": "Content",
617
+ "text": ", "
618
+ },
619
+ {
620
+ "kind": "Reference",
621
+ "text": "ClassModifiers",
622
+ "canonicalReference": "@alloy-js/csharp!ClassModifiers:interface"
623
+ },
624
+ {
625
+ "kind": "Content",
626
+ "text": " "
521
627
  }
522
628
  ],
523
- "fileUrlPath": "src/components/Class.tsx",
629
+ "fileUrlPath": "src/components/ClassDeclaration.tsx",
524
630
  "releaseTag": "Public",
525
- "name": "ClassMemberProps",
631
+ "name": "ClassDeclarationProps",
526
632
  "preserveMemberOrder": false,
527
633
  "members": [
528
634
  {
529
635
  "kind": "PropertySignature",
530
- "canonicalReference": "@alloy-js/csharp!ClassMemberProps#accessModifier:member",
531
- "docComment": "",
636
+ "canonicalReference": "@alloy-js/csharp!ClassDeclarationProps#doc:member",
637
+ "docComment": "/**\n * Doc comment\n */\n",
532
638
  "excerptTokens": [
533
639
  {
534
640
  "kind": "Content",
535
- "text": "accessModifier?: "
641
+ "text": "doc?: "
536
642
  },
537
643
  {
538
644
  "kind": "Reference",
539
- "text": "AccessModifier",
540
- "canonicalReference": "@alloy-js/csharp!AccessModifier:type"
645
+ "text": "core.Children",
646
+ "canonicalReference": "@alloy-js/core!Children:type"
541
647
  },
542
648
  {
543
649
  "kind": "Content",
@@ -547,7 +653,7 @@
547
653
  "isReadonly": false,
548
654
  "isOptional": true,
549
655
  "releaseTag": "Public",
550
- "name": "accessModifier",
656
+ "name": "doc",
551
657
  "propertyTypeTokenRange": {
552
658
  "startIndex": 1,
553
659
  "endIndex": 2
@@ -555,7 +661,7 @@
555
661
  },
556
662
  {
557
663
  "kind": "PropertySignature",
558
- "canonicalReference": "@alloy-js/csharp!ClassMemberProps#name:member",
664
+ "canonicalReference": "@alloy-js/csharp!ClassDeclarationProps#name:member",
559
665
  "docComment": "",
560
666
  "excerptTokens": [
561
667
  {
@@ -582,7 +688,7 @@
582
688
  },
583
689
  {
584
690
  "kind": "PropertySignature",
585
- "canonicalReference": "@alloy-js/csharp!ClassMemberProps#refkey:member",
691
+ "canonicalReference": "@alloy-js/csharp!ClassDeclarationProps#refkey:member",
586
692
  "docComment": "",
587
693
  "excerptTokens": [
588
694
  {
@@ -610,17 +716,30 @@
610
716
  },
611
717
  {
612
718
  "kind": "PropertySignature",
613
- "canonicalReference": "@alloy-js/csharp!ClassMemberProps#type:member",
719
+ "canonicalReference": "@alloy-js/csharp!ClassDeclarationProps#typeParameters:member",
614
720
  "docComment": "",
615
721
  "excerptTokens": [
616
722
  {
617
723
  "kind": "Content",
618
- "text": "type: "
724
+ "text": "typeParameters?: "
619
725
  },
620
726
  {
621
727
  "kind": "Reference",
622
- "text": "core.Children",
623
- "canonicalReference": "@alloy-js/core!Children:type"
728
+ "text": "Record",
729
+ "canonicalReference": "!Record:type"
730
+ },
731
+ {
732
+ "kind": "Content",
733
+ "text": "<string, "
734
+ },
735
+ {
736
+ "kind": "Reference",
737
+ "text": "core.Refkey",
738
+ "canonicalReference": "@alloy-js/core!Refkey:type"
739
+ },
740
+ {
741
+ "kind": "Content",
742
+ "text": ">"
624
743
  },
625
744
  {
626
745
  "kind": "Content",
@@ -628,30 +747,43 @@
628
747
  }
629
748
  ],
630
749
  "isReadonly": false,
631
- "isOptional": false,
750
+ "isOptional": true,
632
751
  "releaseTag": "Public",
633
- "name": "type",
752
+ "name": "typeParameters",
634
753
  "propertyTypeTokenRange": {
635
754
  "startIndex": 1,
636
- "endIndex": 2
755
+ "endIndex": 5
637
756
  }
638
757
  }
639
758
  ],
640
- "extendsTokenRanges": []
759
+ "extendsTokenRanges": [
760
+ {
761
+ "startIndex": 1,
762
+ "endIndex": 5
763
+ },
764
+ {
765
+ "startIndex": 6,
766
+ "endIndex": 7
767
+ },
768
+ {
769
+ "startIndex": 8,
770
+ "endIndex": 9
771
+ }
772
+ ]
641
773
  },
642
774
  {
643
775
  "kind": "Function",
644
- "canonicalReference": "@alloy-js/csharp!ClassMethod:function(1)",
776
+ "canonicalReference": "@alloy-js/csharp!ClassMember:function(1)",
645
777
  "docComment": "",
646
778
  "excerptTokens": [
647
779
  {
648
780
  "kind": "Content",
649
- "text": "export declare function ClassMethod(props: "
781
+ "text": "export declare function ClassMember(props: "
650
782
  },
651
783
  {
652
784
  "kind": "Reference",
653
- "text": "ClassMethodProps",
654
- "canonicalReference": "@alloy-js/csharp!ClassMethodProps:interface"
785
+ "text": "ClassMemberProps",
786
+ "canonicalReference": "@alloy-js/csharp!ClassMemberProps:interface"
655
787
  },
656
788
  {
657
789
  "kind": "Content",
@@ -667,7 +799,7 @@
667
799
  "text": ";"
668
800
  }
669
801
  ],
670
- "fileUrlPath": "src/components/Class.tsx",
802
+ "fileUrlPath": "src/components/ClassDeclaration.tsx",
671
803
  "returnTypeTokenRange": {
672
804
  "startIndex": 3,
673
805
  "endIndex": 4
@@ -684,36 +816,45 @@
684
816
  "isOptional": false
685
817
  }
686
818
  ],
687
- "name": "ClassMethod"
819
+ "name": "ClassMember"
688
820
  },
689
821
  {
690
822
  "kind": "Interface",
691
- "canonicalReference": "@alloy-js/csharp!ClassMethodProps:interface",
823
+ "canonicalReference": "@alloy-js/csharp!ClassMemberProps:interface",
692
824
  "docComment": "",
693
825
  "excerptTokens": [
694
826
  {
695
827
  "kind": "Content",
696
- "text": "export interface ClassMethodProps "
828
+ "text": "export interface ClassMemberProps extends "
829
+ },
830
+ {
831
+ "kind": "Reference",
832
+ "text": "AccessModifiers",
833
+ "canonicalReference": "@alloy-js/csharp!AccessModifiers:interface"
834
+ },
835
+ {
836
+ "kind": "Content",
837
+ "text": " "
697
838
  }
698
839
  ],
699
- "fileUrlPath": "src/components/Class.tsx",
840
+ "fileUrlPath": "src/components/ClassDeclaration.tsx",
700
841
  "releaseTag": "Public",
701
- "name": "ClassMethodProps",
842
+ "name": "ClassMemberProps",
702
843
  "preserveMemberOrder": false,
703
844
  "members": [
704
845
  {
705
846
  "kind": "PropertySignature",
706
- "canonicalReference": "@alloy-js/csharp!ClassMethodProps#accessModifier:member",
707
- "docComment": "",
847
+ "canonicalReference": "@alloy-js/csharp!ClassMemberProps#doc:member",
848
+ "docComment": "/**\n * Doc comment\n */\n",
708
849
  "excerptTokens": [
709
850
  {
710
851
  "kind": "Content",
711
- "text": "accessModifier?: "
852
+ "text": "doc?: "
712
853
  },
713
854
  {
714
855
  "kind": "Reference",
715
- "text": "AccessModifier",
716
- "canonicalReference": "@alloy-js/csharp!AccessModifier:type"
856
+ "text": "core.Children",
857
+ "canonicalReference": "@alloy-js/core!Children:type"
717
858
  },
718
859
  {
719
860
  "kind": "Content",
@@ -723,7 +864,7 @@
723
864
  "isReadonly": false,
724
865
  "isOptional": true,
725
866
  "releaseTag": "Public",
726
- "name": "accessModifier",
867
+ "name": "doc",
727
868
  "propertyTypeTokenRange": {
728
869
  "startIndex": 1,
729
870
  "endIndex": 2
@@ -731,17 +872,16 @@
731
872
  },
732
873
  {
733
874
  "kind": "PropertySignature",
734
- "canonicalReference": "@alloy-js/csharp!ClassMethodProps#children:member",
875
+ "canonicalReference": "@alloy-js/csharp!ClassMemberProps#name:member",
735
876
  "docComment": "",
736
877
  "excerptTokens": [
737
878
  {
738
879
  "kind": "Content",
739
- "text": "children?: "
880
+ "text": "name: "
740
881
  },
741
882
  {
742
- "kind": "Reference",
743
- "text": "core.Children",
744
- "canonicalReference": "@alloy-js/core!Children:type"
883
+ "kind": "Content",
884
+ "text": "string"
745
885
  },
746
886
  {
747
887
  "kind": "Content",
@@ -749,9 +889,9 @@
749
889
  }
750
890
  ],
751
891
  "isReadonly": false,
752
- "isOptional": true,
892
+ "isOptional": false,
753
893
  "releaseTag": "Public",
754
- "name": "children",
894
+ "name": "name",
755
895
  "propertyTypeTokenRange": {
756
896
  "startIndex": 1,
757
897
  "endIndex": 2
@@ -759,17 +899,17 @@
759
899
  },
760
900
  {
761
901
  "kind": "PropertySignature",
762
- "canonicalReference": "@alloy-js/csharp!ClassMethodProps#methodModifier:member",
902
+ "canonicalReference": "@alloy-js/csharp!ClassMemberProps#refkey:member",
763
903
  "docComment": "",
764
904
  "excerptTokens": [
765
905
  {
766
906
  "kind": "Content",
767
- "text": "methodModifier?: "
907
+ "text": "refkey?: "
768
908
  },
769
909
  {
770
910
  "kind": "Reference",
771
- "text": "MethodModifier",
772
- "canonicalReference": "@alloy-js/csharp!MethodModifier:type"
911
+ "text": "core.Refkey",
912
+ "canonicalReference": "@alloy-js/core!Refkey:type"
773
913
  },
774
914
  {
775
915
  "kind": "Content",
@@ -779,7 +919,7 @@
779
919
  "isReadonly": false,
780
920
  "isOptional": true,
781
921
  "releaseTag": "Public",
782
- "name": "methodModifier",
922
+ "name": "refkey",
783
923
  "propertyTypeTokenRange": {
784
924
  "startIndex": 1,
785
925
  "endIndex": 2
@@ -787,16 +927,17 @@
787
927
  },
788
928
  {
789
929
  "kind": "PropertySignature",
790
- "canonicalReference": "@alloy-js/csharp!ClassMethodProps#name:member",
930
+ "canonicalReference": "@alloy-js/csharp!ClassMemberProps#type:member",
791
931
  "docComment": "",
792
932
  "excerptTokens": [
793
933
  {
794
934
  "kind": "Content",
795
- "text": "name: "
935
+ "text": "type: "
796
936
  },
797
937
  {
798
- "kind": "Content",
799
- "text": "string"
938
+ "kind": "Reference",
939
+ "text": "core.Children",
940
+ "canonicalReference": "@alloy-js/core!Children:type"
800
941
  },
801
942
  {
802
943
  "kind": "Content",
@@ -806,76 +947,158 @@
806
947
  "isReadonly": false,
807
948
  "isOptional": false,
808
949
  "releaseTag": "Public",
809
- "name": "name",
950
+ "name": "type",
810
951
  "propertyTypeTokenRange": {
811
952
  "startIndex": 1,
812
953
  "endIndex": 2
813
954
  }
955
+ }
956
+ ],
957
+ "extendsTokenRanges": [
958
+ {
959
+ "startIndex": 1,
960
+ "endIndex": 2
961
+ }
962
+ ]
963
+ },
964
+ {
965
+ "kind": "Function",
966
+ "canonicalReference": "@alloy-js/csharp!ClassMethod:function(1)",
967
+ "docComment": "",
968
+ "excerptTokens": [
969
+ {
970
+ "kind": "Content",
971
+ "text": "export declare function ClassMethod(props: "
972
+ },
973
+ {
974
+ "kind": "Reference",
975
+ "text": "ClassMethodProps",
976
+ "canonicalReference": "@alloy-js/csharp!ClassMethodProps:interface"
977
+ },
978
+ {
979
+ "kind": "Content",
980
+ "text": "): "
981
+ },
982
+ {
983
+ "kind": "Reference",
984
+ "text": "Children",
985
+ "canonicalReference": "@alloy-js/core!Children:type"
814
986
  },
987
+ {
988
+ "kind": "Content",
989
+ "text": ";"
990
+ }
991
+ ],
992
+ "fileUrlPath": "src/components/ClassMethod.tsx",
993
+ "returnTypeTokenRange": {
994
+ "startIndex": 3,
995
+ "endIndex": 4
996
+ },
997
+ "releaseTag": "Public",
998
+ "overloadIndex": 1,
999
+ "parameters": [
1000
+ {
1001
+ "parameterName": "props",
1002
+ "parameterTypeTokenRange": {
1003
+ "startIndex": 1,
1004
+ "endIndex": 2
1005
+ },
1006
+ "isOptional": false
1007
+ }
1008
+ ],
1009
+ "name": "ClassMethod"
1010
+ },
1011
+ {
1012
+ "kind": "Interface",
1013
+ "canonicalReference": "@alloy-js/csharp!ClassMethodModifiers:interface",
1014
+ "docComment": "/**\n * Method modifiers. Can only be one.\n */\n",
1015
+ "excerptTokens": [
1016
+ {
1017
+ "kind": "Content",
1018
+ "text": "export interface ClassMethodModifiers "
1019
+ }
1020
+ ],
1021
+ "fileUrlPath": "src/components/ClassMethod.tsx",
1022
+ "releaseTag": "Public",
1023
+ "name": "ClassMethodModifiers",
1024
+ "preserveMemberOrder": false,
1025
+ "members": [
815
1026
  {
816
1027
  "kind": "PropertySignature",
817
- "canonicalReference": "@alloy-js/csharp!ClassMethodProps#parameters:member",
1028
+ "canonicalReference": "@alloy-js/csharp!ClassMethodModifiers#abstract:member",
818
1029
  "docComment": "",
819
1030
  "excerptTokens": [
820
1031
  {
821
1032
  "kind": "Content",
822
- "text": "parameters?: "
1033
+ "text": "readonly abstract?: "
823
1034
  },
824
1035
  {
825
- "kind": "Reference",
826
- "text": "Array",
827
- "canonicalReference": "!Array:interface"
1036
+ "kind": "Content",
1037
+ "text": "boolean"
828
1038
  },
829
1039
  {
830
1040
  "kind": "Content",
831
- "text": "<"
832
- },
1041
+ "text": ";"
1042
+ }
1043
+ ],
1044
+ "isReadonly": true,
1045
+ "isOptional": true,
1046
+ "releaseTag": "Public",
1047
+ "name": "abstract",
1048
+ "propertyTypeTokenRange": {
1049
+ "startIndex": 1,
1050
+ "endIndex": 2
1051
+ }
1052
+ },
1053
+ {
1054
+ "kind": "PropertySignature",
1055
+ "canonicalReference": "@alloy-js/csharp!ClassMethodModifiers#sealed:member",
1056
+ "docComment": "",
1057
+ "excerptTokens": [
833
1058
  {
834
- "kind": "Reference",
835
- "text": "ParameterProps",
836
- "canonicalReference": "@alloy-js/csharp!ParameterProps:interface"
1059
+ "kind": "Content",
1060
+ "text": "readonly sealed?: "
837
1061
  },
838
1062
  {
839
1063
  "kind": "Content",
840
- "text": ">"
1064
+ "text": "boolean"
841
1065
  },
842
1066
  {
843
1067
  "kind": "Content",
844
1068
  "text": ";"
845
1069
  }
846
1070
  ],
847
- "isReadonly": false,
1071
+ "isReadonly": true,
848
1072
  "isOptional": true,
849
1073
  "releaseTag": "Public",
850
- "name": "parameters",
1074
+ "name": "sealed",
851
1075
  "propertyTypeTokenRange": {
852
1076
  "startIndex": 1,
853
- "endIndex": 5
1077
+ "endIndex": 2
854
1078
  }
855
1079
  },
856
1080
  {
857
1081
  "kind": "PropertySignature",
858
- "canonicalReference": "@alloy-js/csharp!ClassMethodProps#refkey:member",
1082
+ "canonicalReference": "@alloy-js/csharp!ClassMethodModifiers#static:member",
859
1083
  "docComment": "",
860
1084
  "excerptTokens": [
861
1085
  {
862
1086
  "kind": "Content",
863
- "text": "refkey?: "
1087
+ "text": "readonly static?: "
864
1088
  },
865
1089
  {
866
- "kind": "Reference",
867
- "text": "core.Refkey",
868
- "canonicalReference": "@alloy-js/core!Refkey:type"
1090
+ "kind": "Content",
1091
+ "text": "boolean"
869
1092
  },
870
1093
  {
871
1094
  "kind": "Content",
872
1095
  "text": ";"
873
1096
  }
874
1097
  ],
875
- "isReadonly": false,
1098
+ "isReadonly": true,
876
1099
  "isOptional": true,
877
1100
  "releaseTag": "Public",
878
- "name": "refkey",
1101
+ "name": "static",
879
1102
  "propertyTypeTokenRange": {
880
1103
  "startIndex": 1,
881
1104
  "endIndex": 2
@@ -883,27 +1106,26 @@
883
1106
  },
884
1107
  {
885
1108
  "kind": "PropertySignature",
886
- "canonicalReference": "@alloy-js/csharp!ClassMethodProps#returns:member",
1109
+ "canonicalReference": "@alloy-js/csharp!ClassMethodModifiers#virtual:member",
887
1110
  "docComment": "",
888
1111
  "excerptTokens": [
889
1112
  {
890
1113
  "kind": "Content",
891
- "text": "returns?: "
1114
+ "text": "readonly virtual?: "
892
1115
  },
893
1116
  {
894
- "kind": "Reference",
895
- "text": "core.Children",
896
- "canonicalReference": "@alloy-js/core!Children:type"
1117
+ "kind": "Content",
1118
+ "text": "boolean"
897
1119
  },
898
1120
  {
899
1121
  "kind": "Content",
900
1122
  "text": ";"
901
1123
  }
902
1124
  ],
903
- "isReadonly": false,
1125
+ "isReadonly": true,
904
1126
  "isOptional": true,
905
1127
  "releaseTag": "Public",
906
- "name": "returns",
1128
+ "name": "virtual",
907
1129
  "propertyTypeTokenRange": {
908
1130
  "startIndex": 1,
909
1131
  "endIndex": 2
@@ -914,54 +1136,49 @@
914
1136
  },
915
1137
  {
916
1138
  "kind": "Interface",
917
- "canonicalReference": "@alloy-js/csharp!ClassProps:interface",
1139
+ "canonicalReference": "@alloy-js/csharp!ClassMethodProps:interface",
918
1140
  "docComment": "",
919
1141
  "excerptTokens": [
920
1142
  {
921
1143
  "kind": "Content",
922
- "text": "export interface ClassProps extends "
1144
+ "text": "export interface ClassMethodProps extends "
923
1145
  },
924
1146
  {
925
1147
  "kind": "Reference",
926
- "text": "Omit",
927
- "canonicalReference": "!Omit:type"
1148
+ "text": "AccessModifiers",
1149
+ "canonicalReference": "@alloy-js/csharp!AccessModifiers:interface"
928
1150
  },
929
1151
  {
930
1152
  "kind": "Content",
931
- "text": "<"
1153
+ "text": ", "
932
1154
  },
933
1155
  {
934
1156
  "kind": "Reference",
935
- "text": "core.DeclarationProps",
936
- "canonicalReference": "@alloy-js/core!DeclarationProps:type"
937
- },
938
- {
939
- "kind": "Content",
940
- "text": ", \"nameKind\">"
1157
+ "text": "ClassMethodModifiers",
1158
+ "canonicalReference": "@alloy-js/csharp!ClassMethodModifiers:interface"
941
1159
  },
942
1160
  {
943
1161
  "kind": "Content",
944
1162
  "text": " "
945
1163
  }
946
1164
  ],
947
- "fileUrlPath": "src/components/Class.tsx",
1165
+ "fileUrlPath": "src/components/ClassMethod.tsx",
948
1166
  "releaseTag": "Public",
949
- "name": "ClassProps",
1167
+ "name": "ClassMethodProps",
950
1168
  "preserveMemberOrder": false,
951
1169
  "members": [
952
1170
  {
953
1171
  "kind": "PropertySignature",
954
- "canonicalReference": "@alloy-js/csharp!ClassProps#accessModifier:member",
955
- "docComment": "",
1172
+ "canonicalReference": "@alloy-js/csharp!ClassMethodProps#async:member",
1173
+ "docComment": "/**\n * If true, the method will be declared as an async method.\n */\n",
956
1174
  "excerptTokens": [
957
1175
  {
958
1176
  "kind": "Content",
959
- "text": "accessModifier?: "
1177
+ "text": "async?: "
960
1178
  },
961
1179
  {
962
- "kind": "Reference",
963
- "text": "AccessModifier",
964
- "canonicalReference": "@alloy-js/csharp!AccessModifier:type"
1180
+ "kind": "Content",
1181
+ "text": "boolean"
965
1182
  },
966
1183
  {
967
1184
  "kind": "Content",
@@ -971,7 +1188,7 @@
971
1188
  "isReadonly": false,
972
1189
  "isOptional": true,
973
1190
  "releaseTag": "Public",
974
- "name": "accessModifier",
1191
+ "name": "async",
975
1192
  "propertyTypeTokenRange": {
976
1193
  "startIndex": 1,
977
1194
  "endIndex": 2
@@ -979,16 +1196,17 @@
979
1196
  },
980
1197
  {
981
1198
  "kind": "PropertySignature",
982
- "canonicalReference": "@alloy-js/csharp!ClassProps#name:member",
1199
+ "canonicalReference": "@alloy-js/csharp!ClassMethodProps#children:member",
983
1200
  "docComment": "",
984
1201
  "excerptTokens": [
985
1202
  {
986
1203
  "kind": "Content",
987
- "text": "name: "
1204
+ "text": "children?: "
988
1205
  },
989
1206
  {
990
- "kind": "Content",
991
- "text": "string"
1207
+ "kind": "Reference",
1208
+ "text": "Children",
1209
+ "canonicalReference": "@alloy-js/core!Children:type"
992
1210
  },
993
1211
  {
994
1212
  "kind": "Content",
@@ -996,9 +1214,9 @@
996
1214
  }
997
1215
  ],
998
1216
  "isReadonly": false,
999
- "isOptional": false,
1217
+ "isOptional": true,
1000
1218
  "releaseTag": "Public",
1001
- "name": "name",
1219
+ "name": "children",
1002
1220
  "propertyTypeTokenRange": {
1003
1221
  "startIndex": 1,
1004
1222
  "endIndex": 2
@@ -1006,17 +1224,17 @@
1006
1224
  },
1007
1225
  {
1008
1226
  "kind": "PropertySignature",
1009
- "canonicalReference": "@alloy-js/csharp!ClassProps#refkey:member",
1010
- "docComment": "",
1227
+ "canonicalReference": "@alloy-js/csharp!ClassMethodProps#doc:member",
1228
+ "docComment": "/**\n * Doc comment\n */\n",
1011
1229
  "excerptTokens": [
1012
1230
  {
1013
1231
  "kind": "Content",
1014
- "text": "refkey?: "
1232
+ "text": "doc?: "
1015
1233
  },
1016
1234
  {
1017
1235
  "kind": "Reference",
1018
- "text": "core.Refkey",
1019
- "canonicalReference": "@alloy-js/core!Refkey:type"
1236
+ "text": "Children",
1237
+ "canonicalReference": "@alloy-js/core!Children:type"
1020
1238
  },
1021
1239
  {
1022
1240
  "kind": "Content",
@@ -1026,7 +1244,7 @@
1026
1244
  "isReadonly": false,
1027
1245
  "isOptional": true,
1028
1246
  "releaseTag": "Public",
1029
- "name": "refkey",
1247
+ "name": "doc",
1030
1248
  "propertyTypeTokenRange": {
1031
1249
  "startIndex": 1,
1032
1250
  "endIndex": 2
@@ -1034,26 +1252,53 @@
1034
1252
  },
1035
1253
  {
1036
1254
  "kind": "PropertySignature",
1037
- "canonicalReference": "@alloy-js/csharp!ClassProps#typeParameters:member",
1255
+ "canonicalReference": "@alloy-js/csharp!ClassMethodProps#name:member",
1038
1256
  "docComment": "",
1039
1257
  "excerptTokens": [
1040
1258
  {
1041
1259
  "kind": "Content",
1042
- "text": "typeParameters?: "
1260
+ "text": "name: "
1261
+ },
1262
+ {
1263
+ "kind": "Content",
1264
+ "text": "string"
1265
+ },
1266
+ {
1267
+ "kind": "Content",
1268
+ "text": ";"
1269
+ }
1270
+ ],
1271
+ "isReadonly": false,
1272
+ "isOptional": false,
1273
+ "releaseTag": "Public",
1274
+ "name": "name",
1275
+ "propertyTypeTokenRange": {
1276
+ "startIndex": 1,
1277
+ "endIndex": 2
1278
+ }
1279
+ },
1280
+ {
1281
+ "kind": "PropertySignature",
1282
+ "canonicalReference": "@alloy-js/csharp!ClassMethodProps#parameters:member",
1283
+ "docComment": "",
1284
+ "excerptTokens": [
1285
+ {
1286
+ "kind": "Content",
1287
+ "text": "parameters?: "
1043
1288
  },
1044
1289
  {
1045
1290
  "kind": "Reference",
1046
- "text": "Record",
1047
- "canonicalReference": "!Record:type"
1291
+ "text": "Array",
1292
+ "canonicalReference": "!Array:interface"
1048
1293
  },
1049
1294
  {
1050
1295
  "kind": "Content",
1051
- "text": "<string, "
1296
+ "text": "<"
1052
1297
  },
1053
1298
  {
1054
1299
  "kind": "Reference",
1055
- "text": "core.Refkey",
1056
- "canonicalReference": "@alloy-js/core!Refkey:type"
1300
+ "text": "ParameterProps",
1301
+ "canonicalReference": "@alloy-js/csharp!ParameterProps:interface"
1057
1302
  },
1058
1303
  {
1059
1304
  "kind": "Content",
@@ -1067,20 +1312,256 @@
1067
1312
  "isReadonly": false,
1068
1313
  "isOptional": true,
1069
1314
  "releaseTag": "Public",
1070
- "name": "typeParameters",
1315
+ "name": "parameters",
1071
1316
  "propertyTypeTokenRange": {
1072
1317
  "startIndex": 1,
1073
1318
  "endIndex": 5
1074
1319
  }
1075
- }
1076
- ],
1077
- "extendsTokenRanges": [
1320
+ },
1078
1321
  {
1079
- "startIndex": 1,
1080
- "endIndex": 5
1322
+ "kind": "PropertySignature",
1323
+ "canonicalReference": "@alloy-js/csharp!ClassMethodProps#refkey:member",
1324
+ "docComment": "",
1325
+ "excerptTokens": [
1326
+ {
1327
+ "kind": "Content",
1328
+ "text": "refkey?: "
1329
+ },
1330
+ {
1331
+ "kind": "Reference",
1332
+ "text": "Refkey",
1333
+ "canonicalReference": "@alloy-js/core!Refkey:type"
1334
+ },
1335
+ {
1336
+ "kind": "Content",
1337
+ "text": ";"
1338
+ }
1339
+ ],
1340
+ "isReadonly": false,
1341
+ "isOptional": true,
1342
+ "releaseTag": "Public",
1343
+ "name": "refkey",
1344
+ "propertyTypeTokenRange": {
1345
+ "startIndex": 1,
1346
+ "endIndex": 2
1347
+ }
1348
+ },
1349
+ {
1350
+ "kind": "PropertySignature",
1351
+ "canonicalReference": "@alloy-js/csharp!ClassMethodProps#returns:member",
1352
+ "docComment": "",
1353
+ "excerptTokens": [
1354
+ {
1355
+ "kind": "Content",
1356
+ "text": "returns?: "
1357
+ },
1358
+ {
1359
+ "kind": "Reference",
1360
+ "text": "Children",
1361
+ "canonicalReference": "@alloy-js/core!Children:type"
1362
+ },
1363
+ {
1364
+ "kind": "Content",
1365
+ "text": ";"
1366
+ }
1367
+ ],
1368
+ "isReadonly": false,
1369
+ "isOptional": true,
1370
+ "releaseTag": "Public",
1371
+ "name": "returns",
1372
+ "propertyTypeTokenRange": {
1373
+ "startIndex": 1,
1374
+ "endIndex": 2
1375
+ }
1376
+ }
1377
+ ],
1378
+ "extendsTokenRanges": [
1379
+ {
1380
+ "startIndex": 1,
1381
+ "endIndex": 2
1382
+ },
1383
+ {
1384
+ "startIndex": 3,
1385
+ "endIndex": 4
1081
1386
  }
1082
1387
  ]
1083
1388
  },
1389
+ {
1390
+ "kind": "Interface",
1391
+ "canonicalReference": "@alloy-js/csharp!ClassModifiers:interface",
1392
+ "docComment": "",
1393
+ "excerptTokens": [
1394
+ {
1395
+ "kind": "Content",
1396
+ "text": "export interface ClassModifiers "
1397
+ }
1398
+ ],
1399
+ "fileUrlPath": "src/components/ClassDeclaration.tsx",
1400
+ "releaseTag": "Public",
1401
+ "name": "ClassModifiers",
1402
+ "preserveMemberOrder": false,
1403
+ "members": [
1404
+ {
1405
+ "kind": "PropertySignature",
1406
+ "canonicalReference": "@alloy-js/csharp!ClassModifiers#abstract:member",
1407
+ "docComment": "",
1408
+ "excerptTokens": [
1409
+ {
1410
+ "kind": "Content",
1411
+ "text": "readonly abstract?: "
1412
+ },
1413
+ {
1414
+ "kind": "Content",
1415
+ "text": "boolean"
1416
+ },
1417
+ {
1418
+ "kind": "Content",
1419
+ "text": ";"
1420
+ }
1421
+ ],
1422
+ "isReadonly": true,
1423
+ "isOptional": true,
1424
+ "releaseTag": "Public",
1425
+ "name": "abstract",
1426
+ "propertyTypeTokenRange": {
1427
+ "startIndex": 1,
1428
+ "endIndex": 2
1429
+ }
1430
+ },
1431
+ {
1432
+ "kind": "PropertySignature",
1433
+ "canonicalReference": "@alloy-js/csharp!ClassModifiers#partial:member",
1434
+ "docComment": "",
1435
+ "excerptTokens": [
1436
+ {
1437
+ "kind": "Content",
1438
+ "text": "readonly partial?: "
1439
+ },
1440
+ {
1441
+ "kind": "Content",
1442
+ "text": "boolean"
1443
+ },
1444
+ {
1445
+ "kind": "Content",
1446
+ "text": ";"
1447
+ }
1448
+ ],
1449
+ "isReadonly": true,
1450
+ "isOptional": true,
1451
+ "releaseTag": "Public",
1452
+ "name": "partial",
1453
+ "propertyTypeTokenRange": {
1454
+ "startIndex": 1,
1455
+ "endIndex": 2
1456
+ }
1457
+ },
1458
+ {
1459
+ "kind": "PropertySignature",
1460
+ "canonicalReference": "@alloy-js/csharp!ClassModifiers#sealed:member",
1461
+ "docComment": "",
1462
+ "excerptTokens": [
1463
+ {
1464
+ "kind": "Content",
1465
+ "text": "readonly sealed?: "
1466
+ },
1467
+ {
1468
+ "kind": "Content",
1469
+ "text": "boolean"
1470
+ },
1471
+ {
1472
+ "kind": "Content",
1473
+ "text": ";"
1474
+ }
1475
+ ],
1476
+ "isReadonly": true,
1477
+ "isOptional": true,
1478
+ "releaseTag": "Public",
1479
+ "name": "sealed",
1480
+ "propertyTypeTokenRange": {
1481
+ "startIndex": 1,
1482
+ "endIndex": 2
1483
+ }
1484
+ },
1485
+ {
1486
+ "kind": "PropertySignature",
1487
+ "canonicalReference": "@alloy-js/csharp!ClassModifiers#static:member",
1488
+ "docComment": "",
1489
+ "excerptTokens": [
1490
+ {
1491
+ "kind": "Content",
1492
+ "text": "readonly static?: "
1493
+ },
1494
+ {
1495
+ "kind": "Content",
1496
+ "text": "boolean"
1497
+ },
1498
+ {
1499
+ "kind": "Content",
1500
+ "text": ";"
1501
+ }
1502
+ ],
1503
+ "isReadonly": true,
1504
+ "isOptional": true,
1505
+ "releaseTag": "Public",
1506
+ "name": "static",
1507
+ "propertyTypeTokenRange": {
1508
+ "startIndex": 1,
1509
+ "endIndex": 2
1510
+ }
1511
+ }
1512
+ ],
1513
+ "extendsTokenRanges": []
1514
+ },
1515
+ {
1516
+ "kind": "Function",
1517
+ "canonicalReference": "@alloy-js/csharp!computeModifiersPrefix:function(1)",
1518
+ "docComment": "/**\n * Resolve the modifier prefix\n */\n",
1519
+ "excerptTokens": [
1520
+ {
1521
+ "kind": "Content",
1522
+ "text": "export declare function computeModifiersPrefix(modifiers: "
1523
+ },
1524
+ {
1525
+ "kind": "Reference",
1526
+ "text": "Array",
1527
+ "canonicalReference": "!Array:interface"
1528
+ },
1529
+ {
1530
+ "kind": "Content",
1531
+ "text": "<string | undefined>"
1532
+ },
1533
+ {
1534
+ "kind": "Content",
1535
+ "text": "): "
1536
+ },
1537
+ {
1538
+ "kind": "Content",
1539
+ "text": "string"
1540
+ },
1541
+ {
1542
+ "kind": "Content",
1543
+ "text": ";"
1544
+ }
1545
+ ],
1546
+ "fileUrlPath": "src/modifiers.ts",
1547
+ "returnTypeTokenRange": {
1548
+ "startIndex": 4,
1549
+ "endIndex": 5
1550
+ },
1551
+ "releaseTag": "Public",
1552
+ "overloadIndex": 1,
1553
+ "parameters": [
1554
+ {
1555
+ "parameterName": "modifiers",
1556
+ "parameterTypeTokenRange": {
1557
+ "startIndex": 1,
1558
+ "endIndex": 3
1559
+ },
1560
+ "isOptional": false
1561
+ }
1562
+ ],
1563
+ "name": "computeModifiersPrefix"
1564
+ },
1084
1565
  {
1085
1566
  "kind": "Function",
1086
1567
  "canonicalReference": "@alloy-js/csharp!createCSharpNamePolicy:function(1)",
@@ -1134,7 +1615,7 @@
1134
1615
  },
1135
1616
  {
1136
1617
  "kind": "Content",
1137
- "text": "\"class\" | \"constant\" | \"enum\" | \"enum-member\" | \"function\" | \"interface\" | \"class-member-private\" | \"class-member-public\" | \"class-method\" | \"parameter\" | \"type-parameter\""
1618
+ "text": "\"class\" | \"constant\" | \"enum\" | \"enum-member\" | \"function\" | \"interface\" | \"class-member-private\" | \"class-member-public\" | \"class-method\" | \"class-property\" | \"parameter\" | \"type-parameter\""
1138
1619
  },
1139
1620
  {
1140
1621
  "kind": "Content",
@@ -1668,33 +2149,71 @@
1668
2149
  },
1669
2150
  {
1670
2151
  "kind": "Function",
1671
- "canonicalReference": "@alloy-js/csharp!Enum:function(1)",
2152
+ "canonicalReference": "@alloy-js/csharp!DocC:function(1)",
1672
2153
  "docComment": "",
1673
2154
  "excerptTokens": [
1674
2155
  {
1675
2156
  "kind": "Content",
1676
- "text": "export declare function Enum(props: "
2157
+ "text": "DocC: (props: "
1677
2158
  },
1678
2159
  {
1679
2160
  "kind": "Reference",
1680
- "text": "EnumProps",
1681
- "canonicalReference": "@alloy-js/csharp!EnumProps:interface"
2161
+ "text": "DocCommentProps",
2162
+ "canonicalReference": "@alloy-js/csharp!DocCommentProps:interface"
1682
2163
  },
1683
2164
  {
1684
2165
  "kind": "Content",
1685
- "text": "): "
2166
+ "text": ") => "
2167
+ },
2168
+ {
2169
+ "kind": "Content",
2170
+ "text": "string"
2171
+ }
2172
+ ],
2173
+ "fileUrlPath": "src/components/doc/comment.tsx",
2174
+ "returnTypeTokenRange": {
2175
+ "startIndex": 3,
2176
+ "endIndex": 4
2177
+ },
2178
+ "releaseTag": "Public",
2179
+ "overloadIndex": 1,
2180
+ "parameters": [
2181
+ {
2182
+ "parameterName": "props",
2183
+ "parameterTypeTokenRange": {
2184
+ "startIndex": 1,
2185
+ "endIndex": 2
2186
+ },
2187
+ "isOptional": false
2188
+ }
2189
+ ],
2190
+ "name": "DocC"
2191
+ },
2192
+ {
2193
+ "kind": "Function",
2194
+ "canonicalReference": "@alloy-js/csharp!DocCode:function(1)",
2195
+ "docComment": "",
2196
+ "excerptTokens": [
2197
+ {
2198
+ "kind": "Content",
2199
+ "text": "DocCode: (props: "
1686
2200
  },
1687
2201
  {
1688
2202
  "kind": "Reference",
1689
- "text": "core.Children",
1690
- "canonicalReference": "@alloy-js/core!Children:type"
2203
+ "text": "DocCommentProps",
2204
+ "canonicalReference": "@alloy-js/csharp!DocCommentProps:interface"
1691
2205
  },
1692
2206
  {
1693
2207
  "kind": "Content",
1694
- "text": ";"
2208
+ "text": ") => "
2209
+ },
2210
+ {
2211
+ "kind": "Reference",
2212
+ "text": "Children",
2213
+ "canonicalReference": "@alloy-js/core!Children:type"
1695
2214
  }
1696
2215
  ],
1697
- "fileUrlPath": "src/components/Enum.tsx",
2216
+ "fileUrlPath": "src/components/doc/comment.tsx",
1698
2217
  "returnTypeTokenRange": {
1699
2218
  "startIndex": 3,
1700
2219
  "endIndex": 4
@@ -1711,21 +2230,21 @@
1711
2230
  "isOptional": false
1712
2231
  }
1713
2232
  ],
1714
- "name": "Enum"
2233
+ "name": "DocCode"
1715
2234
  },
1716
2235
  {
1717
2236
  "kind": "Function",
1718
- "canonicalReference": "@alloy-js/csharp!EnumMember:function(1)",
2237
+ "canonicalReference": "@alloy-js/csharp!DocComment:function(1)",
1719
2238
  "docComment": "",
1720
2239
  "excerptTokens": [
1721
2240
  {
1722
2241
  "kind": "Content",
1723
- "text": "export declare function EnumMember(props: "
2242
+ "text": "export declare function DocComment(props: "
1724
2243
  },
1725
2244
  {
1726
2245
  "kind": "Reference",
1727
- "text": "EnumMemberProps",
1728
- "canonicalReference": "@alloy-js/csharp!EnumMemberProps:interface"
2246
+ "text": "DocCommentProps",
2247
+ "canonicalReference": "@alloy-js/csharp!DocCommentProps:interface"
1729
2248
  },
1730
2249
  {
1731
2250
  "kind": "Content",
@@ -1733,7 +2252,7 @@
1733
2252
  },
1734
2253
  {
1735
2254
  "kind": "Reference",
1736
- "text": "core.Children",
2255
+ "text": "Children",
1737
2256
  "canonicalReference": "@alloy-js/core!Children:type"
1738
2257
  },
1739
2258
  {
@@ -1741,7 +2260,7 @@
1741
2260
  "text": ";"
1742
2261
  }
1743
2262
  ],
1744
- "fileUrlPath": "src/components/Enum.tsx",
2263
+ "fileUrlPath": "src/components/doc/comment.tsx",
1745
2264
  "returnTypeTokenRange": {
1746
2265
  "startIndex": 3,
1747
2266
  "endIndex": 4
@@ -1758,34 +2277,2147 @@
1758
2277
  "isOptional": false
1759
2278
  }
1760
2279
  ],
1761
- "name": "EnumMember"
2280
+ "name": "DocComment"
1762
2281
  },
1763
2282
  {
1764
2283
  "kind": "Interface",
1765
- "canonicalReference": "@alloy-js/csharp!EnumMemberProps:interface",
2284
+ "canonicalReference": "@alloy-js/csharp!DocCommentProps:interface",
1766
2285
  "docComment": "",
1767
2286
  "excerptTokens": [
1768
2287
  {
1769
2288
  "kind": "Content",
1770
- "text": "export interface EnumMemberProps "
2289
+ "text": "export interface DocCommentProps "
1771
2290
  }
1772
2291
  ],
1773
- "fileUrlPath": "src/components/Enum.tsx",
2292
+ "fileUrlPath": "src/components/doc/comment.tsx",
1774
2293
  "releaseTag": "Public",
1775
- "name": "EnumMemberProps",
2294
+ "name": "DocCommentProps",
1776
2295
  "preserveMemberOrder": false,
1777
2296
  "members": [
1778
2297
  {
1779
2298
  "kind": "PropertySignature",
1780
- "canonicalReference": "@alloy-js/csharp!EnumMemberProps#name:member",
2299
+ "canonicalReference": "@alloy-js/csharp!DocCommentProps#children:member",
1781
2300
  "docComment": "",
1782
2301
  "excerptTokens": [
1783
2302
  {
1784
2303
  "kind": "Content",
1785
- "text": "name: "
2304
+ "text": "children: "
1786
2305
  },
1787
2306
  {
1788
- "kind": "Content",
2307
+ "kind": "Reference",
2308
+ "text": "Children",
2309
+ "canonicalReference": "@alloy-js/core!Children:type"
2310
+ },
2311
+ {
2312
+ "kind": "Content",
2313
+ "text": ";"
2314
+ }
2315
+ ],
2316
+ "isReadonly": false,
2317
+ "isOptional": false,
2318
+ "releaseTag": "Public",
2319
+ "name": "children",
2320
+ "propertyTypeTokenRange": {
2321
+ "startIndex": 1,
2322
+ "endIndex": 2
2323
+ }
2324
+ }
2325
+ ],
2326
+ "extendsTokenRanges": []
2327
+ },
2328
+ {
2329
+ "kind": "Interface",
2330
+ "canonicalReference": "@alloy-js/csharp!DocCommentTagProps:interface",
2331
+ "docComment": "",
2332
+ "excerptTokens": [
2333
+ {
2334
+ "kind": "Content",
2335
+ "text": "export interface DocCommentTagProps "
2336
+ }
2337
+ ],
2338
+ "fileUrlPath": "src/components/doc/comment.tsx",
2339
+ "releaseTag": "Public",
2340
+ "name": "DocCommentTagProps",
2341
+ "preserveMemberOrder": false,
2342
+ "members": [
2343
+ {
2344
+ "kind": "PropertySignature",
2345
+ "canonicalReference": "@alloy-js/csharp!DocCommentTagProps#children:member",
2346
+ "docComment": "",
2347
+ "excerptTokens": [
2348
+ {
2349
+ "kind": "Content",
2350
+ "text": "children: "
2351
+ },
2352
+ {
2353
+ "kind": "Reference",
2354
+ "text": "Children",
2355
+ "canonicalReference": "@alloy-js/core!Children:type"
2356
+ },
2357
+ {
2358
+ "kind": "Content",
2359
+ "text": ";"
2360
+ }
2361
+ ],
2362
+ "isReadonly": false,
2363
+ "isOptional": false,
2364
+ "releaseTag": "Public",
2365
+ "name": "children",
2366
+ "propertyTypeTokenRange": {
2367
+ "startIndex": 1,
2368
+ "endIndex": 2
2369
+ }
2370
+ }
2371
+ ],
2372
+ "extendsTokenRanges": []
2373
+ },
2374
+ {
2375
+ "kind": "Function",
2376
+ "canonicalReference": "@alloy-js/csharp!DocDescription:function(1)",
2377
+ "docComment": "",
2378
+ "excerptTokens": [
2379
+ {
2380
+ "kind": "Content",
2381
+ "text": "DocDescription: (props: "
2382
+ },
2383
+ {
2384
+ "kind": "Reference",
2385
+ "text": "DocCommentProps",
2386
+ "canonicalReference": "@alloy-js/csharp!DocCommentProps:interface"
2387
+ },
2388
+ {
2389
+ "kind": "Content",
2390
+ "text": ") => "
2391
+ },
2392
+ {
2393
+ "kind": "Reference",
2394
+ "text": "Children",
2395
+ "canonicalReference": "@alloy-js/core!Children:type"
2396
+ }
2397
+ ],
2398
+ "fileUrlPath": "src/components/doc/comment.tsx",
2399
+ "returnTypeTokenRange": {
2400
+ "startIndex": 3,
2401
+ "endIndex": 4
2402
+ },
2403
+ "releaseTag": "Public",
2404
+ "overloadIndex": 1,
2405
+ "parameters": [
2406
+ {
2407
+ "parameterName": "props",
2408
+ "parameterTypeTokenRange": {
2409
+ "startIndex": 1,
2410
+ "endIndex": 2
2411
+ },
2412
+ "isOptional": false
2413
+ }
2414
+ ],
2415
+ "name": "DocDescription"
2416
+ },
2417
+ {
2418
+ "kind": "Function",
2419
+ "canonicalReference": "@alloy-js/csharp!DocExample:function(1)",
2420
+ "docComment": "",
2421
+ "excerptTokens": [
2422
+ {
2423
+ "kind": "Content",
2424
+ "text": "DocExample: (props: "
2425
+ },
2426
+ {
2427
+ "kind": "Reference",
2428
+ "text": "DocCommentProps",
2429
+ "canonicalReference": "@alloy-js/csharp!DocCommentProps:interface"
2430
+ },
2431
+ {
2432
+ "kind": "Content",
2433
+ "text": ") => "
2434
+ },
2435
+ {
2436
+ "kind": "Reference",
2437
+ "text": "Children",
2438
+ "canonicalReference": "@alloy-js/core!Children:type"
2439
+ }
2440
+ ],
2441
+ "fileUrlPath": "src/components/doc/comment.tsx",
2442
+ "returnTypeTokenRange": {
2443
+ "startIndex": 3,
2444
+ "endIndex": 4
2445
+ },
2446
+ "releaseTag": "Public",
2447
+ "overloadIndex": 1,
2448
+ "parameters": [
2449
+ {
2450
+ "parameterName": "props",
2451
+ "parameterTypeTokenRange": {
2452
+ "startIndex": 1,
2453
+ "endIndex": 2
2454
+ },
2455
+ "isOptional": false
2456
+ }
2457
+ ],
2458
+ "name": "DocExample"
2459
+ },
2460
+ {
2461
+ "kind": "Function",
2462
+ "canonicalReference": "@alloy-js/csharp!DocException:function(1)",
2463
+ "docComment": "",
2464
+ "excerptTokens": [
2465
+ {
2466
+ "kind": "Content",
2467
+ "text": "DocException: (props: "
2468
+ },
2469
+ {
2470
+ "kind": "Reference",
2471
+ "text": "DocCommentProps",
2472
+ "canonicalReference": "@alloy-js/csharp!DocCommentProps:interface"
2473
+ },
2474
+ {
2475
+ "kind": "Content",
2476
+ "text": ") => "
2477
+ },
2478
+ {
2479
+ "kind": "Reference",
2480
+ "text": "Children",
2481
+ "canonicalReference": "@alloy-js/core!Children:type"
2482
+ }
2483
+ ],
2484
+ "fileUrlPath": "src/components/doc/comment.tsx",
2485
+ "returnTypeTokenRange": {
2486
+ "startIndex": 3,
2487
+ "endIndex": 4
2488
+ },
2489
+ "releaseTag": "Public",
2490
+ "overloadIndex": 1,
2491
+ "parameters": [
2492
+ {
2493
+ "parameterName": "props",
2494
+ "parameterTypeTokenRange": {
2495
+ "startIndex": 1,
2496
+ "endIndex": 2
2497
+ },
2498
+ "isOptional": false
2499
+ }
2500
+ ],
2501
+ "name": "DocException"
2502
+ },
2503
+ {
2504
+ "kind": "Function",
2505
+ "canonicalReference": "@alloy-js/csharp!DocFromMarkdown:function(1)",
2506
+ "docComment": "/**\n * Convert markdown to a Csharp doc comment\n */\n",
2507
+ "excerptTokens": [
2508
+ {
2509
+ "kind": "Content",
2510
+ "text": "export declare function DocFromMarkdown(props: "
2511
+ },
2512
+ {
2513
+ "kind": "Reference",
2514
+ "text": "DocFromMarkdownProps",
2515
+ "canonicalReference": "@alloy-js/csharp!DocFromMarkdownProps:interface"
2516
+ },
2517
+ {
2518
+ "kind": "Content",
2519
+ "text": "): "
2520
+ },
2521
+ {
2522
+ "kind": "Content",
2523
+ "text": "import(\"@alloy-js/core/jsx-runtime\")."
2524
+ },
2525
+ {
2526
+ "kind": "Reference",
2527
+ "text": "Children",
2528
+ "canonicalReference": "@alloy-js/core!Children:type"
2529
+ },
2530
+ {
2531
+ "kind": "Content",
2532
+ "text": ";"
2533
+ }
2534
+ ],
2535
+ "fileUrlPath": "src/components/doc/from-markdown.tsx",
2536
+ "returnTypeTokenRange": {
2537
+ "startIndex": 3,
2538
+ "endIndex": 5
2539
+ },
2540
+ "releaseTag": "Public",
2541
+ "overloadIndex": 1,
2542
+ "parameters": [
2543
+ {
2544
+ "parameterName": "props",
2545
+ "parameterTypeTokenRange": {
2546
+ "startIndex": 1,
2547
+ "endIndex": 2
2548
+ },
2549
+ "isOptional": false
2550
+ }
2551
+ ],
2552
+ "name": "DocFromMarkdown"
2553
+ },
2554
+ {
2555
+ "kind": "Interface",
2556
+ "canonicalReference": "@alloy-js/csharp!DocFromMarkdownProps:interface",
2557
+ "docComment": "",
2558
+ "excerptTokens": [
2559
+ {
2560
+ "kind": "Content",
2561
+ "text": "export interface DocFromMarkdownProps "
2562
+ }
2563
+ ],
2564
+ "fileUrlPath": "src/components/doc/from-markdown.tsx",
2565
+ "releaseTag": "Public",
2566
+ "name": "DocFromMarkdownProps",
2567
+ "preserveMemberOrder": false,
2568
+ "members": [
2569
+ {
2570
+ "kind": "PropertySignature",
2571
+ "canonicalReference": "@alloy-js/csharp!DocFromMarkdownProps#markdown:member",
2572
+ "docComment": "",
2573
+ "excerptTokens": [
2574
+ {
2575
+ "kind": "Content",
2576
+ "text": "markdown: "
2577
+ },
2578
+ {
2579
+ "kind": "Content",
2580
+ "text": "string"
2581
+ },
2582
+ {
2583
+ "kind": "Content",
2584
+ "text": ";"
2585
+ }
2586
+ ],
2587
+ "isReadonly": false,
2588
+ "isOptional": false,
2589
+ "releaseTag": "Public",
2590
+ "name": "markdown",
2591
+ "propertyTypeTokenRange": {
2592
+ "startIndex": 1,
2593
+ "endIndex": 2
2594
+ }
2595
+ }
2596
+ ],
2597
+ "extendsTokenRanges": []
2598
+ },
2599
+ {
2600
+ "kind": "Function",
2601
+ "canonicalReference": "@alloy-js/csharp!DocInclude:function(1)",
2602
+ "docComment": "",
2603
+ "excerptTokens": [
2604
+ {
2605
+ "kind": "Content",
2606
+ "text": "DocInclude: (props: "
2607
+ },
2608
+ {
2609
+ "kind": "Reference",
2610
+ "text": "DocIncludeProps",
2611
+ "canonicalReference": "@alloy-js/csharp!DocIncludeProps:interface"
2612
+ },
2613
+ {
2614
+ "kind": "Content",
2615
+ "text": ") => "
2616
+ },
2617
+ {
2618
+ "kind": "Content",
2619
+ "text": "string"
2620
+ }
2621
+ ],
2622
+ "fileUrlPath": "src/components/doc/comment.tsx",
2623
+ "returnTypeTokenRange": {
2624
+ "startIndex": 3,
2625
+ "endIndex": 4
2626
+ },
2627
+ "releaseTag": "Public",
2628
+ "overloadIndex": 1,
2629
+ "parameters": [
2630
+ {
2631
+ "parameterName": "props",
2632
+ "parameterTypeTokenRange": {
2633
+ "startIndex": 1,
2634
+ "endIndex": 2
2635
+ },
2636
+ "isOptional": false
2637
+ }
2638
+ ],
2639
+ "name": "DocInclude"
2640
+ },
2641
+ {
2642
+ "kind": "Interface",
2643
+ "canonicalReference": "@alloy-js/csharp!DocIncludeProps:interface",
2644
+ "docComment": "",
2645
+ "excerptTokens": [
2646
+ {
2647
+ "kind": "Content",
2648
+ "text": "export interface DocIncludeProps "
2649
+ }
2650
+ ],
2651
+ "fileUrlPath": "src/components/doc/comment.tsx",
2652
+ "releaseTag": "Public",
2653
+ "name": "DocIncludeProps",
2654
+ "preserveMemberOrder": false,
2655
+ "members": [
2656
+ {
2657
+ "kind": "PropertySignature",
2658
+ "canonicalReference": "@alloy-js/csharp!DocIncludeProps#file:member",
2659
+ "docComment": "/**\n * is the file name of an external XML file. The file name is interpreted relative to the file that contains the include tag.\n */\n",
2660
+ "excerptTokens": [
2661
+ {
2662
+ "kind": "Content",
2663
+ "text": "file: "
2664
+ },
2665
+ {
2666
+ "kind": "Content",
2667
+ "text": "string"
2668
+ },
2669
+ {
2670
+ "kind": "Content",
2671
+ "text": ";"
2672
+ }
2673
+ ],
2674
+ "isReadonly": false,
2675
+ "isOptional": false,
2676
+ "releaseTag": "Public",
2677
+ "name": "file",
2678
+ "propertyTypeTokenRange": {
2679
+ "startIndex": 1,
2680
+ "endIndex": 2
2681
+ }
2682
+ },
2683
+ {
2684
+ "kind": "PropertySignature",
2685
+ "canonicalReference": "@alloy-js/csharp!DocIncludeProps#path:member",
2686
+ "docComment": "/**\n * is an XPath expression that selects some of the XML in the external XML file.\n */\n",
2687
+ "excerptTokens": [
2688
+ {
2689
+ "kind": "Content",
2690
+ "text": "path?: "
2691
+ },
2692
+ {
2693
+ "kind": "Content",
2694
+ "text": "string"
2695
+ },
2696
+ {
2697
+ "kind": "Content",
2698
+ "text": ";"
2699
+ }
2700
+ ],
2701
+ "isReadonly": false,
2702
+ "isOptional": true,
2703
+ "releaseTag": "Public",
2704
+ "name": "path",
2705
+ "propertyTypeTokenRange": {
2706
+ "startIndex": 1,
2707
+ "endIndex": 2
2708
+ }
2709
+ }
2710
+ ],
2711
+ "extendsTokenRanges": []
2712
+ },
2713
+ {
2714
+ "kind": "Function",
2715
+ "canonicalReference": "@alloy-js/csharp!DocList:function(1)",
2716
+ "docComment": "",
2717
+ "excerptTokens": [
2718
+ {
2719
+ "kind": "Content",
2720
+ "text": "export declare function DocList(props: "
2721
+ },
2722
+ {
2723
+ "kind": "Reference",
2724
+ "text": "DocListProps",
2725
+ "canonicalReference": "@alloy-js/csharp!DocListProps:interface"
2726
+ },
2727
+ {
2728
+ "kind": "Content",
2729
+ "text": "): "
2730
+ },
2731
+ {
2732
+ "kind": "Reference",
2733
+ "text": "Children",
2734
+ "canonicalReference": "@alloy-js/core!Children:type"
2735
+ },
2736
+ {
2737
+ "kind": "Content",
2738
+ "text": ";"
2739
+ }
2740
+ ],
2741
+ "fileUrlPath": "src/components/doc/comment.tsx",
2742
+ "returnTypeTokenRange": {
2743
+ "startIndex": 3,
2744
+ "endIndex": 4
2745
+ },
2746
+ "releaseTag": "Public",
2747
+ "overloadIndex": 1,
2748
+ "parameters": [
2749
+ {
2750
+ "parameterName": "props",
2751
+ "parameterTypeTokenRange": {
2752
+ "startIndex": 1,
2753
+ "endIndex": 2
2754
+ },
2755
+ "isOptional": false
2756
+ }
2757
+ ],
2758
+ "name": "DocList"
2759
+ },
2760
+ {
2761
+ "kind": "Interface",
2762
+ "canonicalReference": "@alloy-js/csharp!DocListProps:interface",
2763
+ "docComment": "",
2764
+ "excerptTokens": [
2765
+ {
2766
+ "kind": "Content",
2767
+ "text": "export interface DocListProps "
2768
+ }
2769
+ ],
2770
+ "fileUrlPath": "src/components/doc/comment.tsx",
2771
+ "releaseTag": "Public",
2772
+ "name": "DocListProps",
2773
+ "preserveMemberOrder": false,
2774
+ "members": [
2775
+ {
2776
+ "kind": "PropertySignature",
2777
+ "canonicalReference": "@alloy-js/csharp!DocListProps#items:member",
2778
+ "docComment": "",
2779
+ "excerptTokens": [
2780
+ {
2781
+ "kind": "Content",
2782
+ "text": "items: "
2783
+ },
2784
+ {
2785
+ "kind": "Reference",
2786
+ "text": "Children",
2787
+ "canonicalReference": "@alloy-js/core!Children:type"
2788
+ },
2789
+ {
2790
+ "kind": "Content",
2791
+ "text": "[]"
2792
+ },
2793
+ {
2794
+ "kind": "Content",
2795
+ "text": ";"
2796
+ }
2797
+ ],
2798
+ "isReadonly": false,
2799
+ "isOptional": false,
2800
+ "releaseTag": "Public",
2801
+ "name": "items",
2802
+ "propertyTypeTokenRange": {
2803
+ "startIndex": 1,
2804
+ "endIndex": 3
2805
+ }
2806
+ },
2807
+ {
2808
+ "kind": "PropertySignature",
2809
+ "canonicalReference": "@alloy-js/csharp!DocListProps#type:member",
2810
+ "docComment": "",
2811
+ "excerptTokens": [
2812
+ {
2813
+ "kind": "Content",
2814
+ "text": "type?: "
2815
+ },
2816
+ {
2817
+ "kind": "Content",
2818
+ "text": "\"bullet\" | \"number\""
2819
+ },
2820
+ {
2821
+ "kind": "Content",
2822
+ "text": ";"
2823
+ }
2824
+ ],
2825
+ "isReadonly": false,
2826
+ "isOptional": true,
2827
+ "releaseTag": "Public",
2828
+ "name": "type",
2829
+ "propertyTypeTokenRange": {
2830
+ "startIndex": 1,
2831
+ "endIndex": 2
2832
+ }
2833
+ }
2834
+ ],
2835
+ "extendsTokenRanges": []
2836
+ },
2837
+ {
2838
+ "kind": "Function",
2839
+ "canonicalReference": "@alloy-js/csharp!DocPara:function(1)",
2840
+ "docComment": "",
2841
+ "excerptTokens": [
2842
+ {
2843
+ "kind": "Content",
2844
+ "text": "DocPara: (props: "
2845
+ },
2846
+ {
2847
+ "kind": "Reference",
2848
+ "text": "DocCommentProps",
2849
+ "canonicalReference": "@alloy-js/csharp!DocCommentProps:interface"
2850
+ },
2851
+ {
2852
+ "kind": "Content",
2853
+ "text": ") => "
2854
+ },
2855
+ {
2856
+ "kind": "Reference",
2857
+ "text": "Children",
2858
+ "canonicalReference": "@alloy-js/core!Children:type"
2859
+ }
2860
+ ],
2861
+ "fileUrlPath": "src/components/doc/comment.tsx",
2862
+ "returnTypeTokenRange": {
2863
+ "startIndex": 3,
2864
+ "endIndex": 4
2865
+ },
2866
+ "releaseTag": "Public",
2867
+ "overloadIndex": 1,
2868
+ "parameters": [
2869
+ {
2870
+ "parameterName": "props",
2871
+ "parameterTypeTokenRange": {
2872
+ "startIndex": 1,
2873
+ "endIndex": 2
2874
+ },
2875
+ "isOptional": false
2876
+ }
2877
+ ],
2878
+ "name": "DocPara"
2879
+ },
2880
+ {
2881
+ "kind": "Function",
2882
+ "canonicalReference": "@alloy-js/csharp!DocParam:function(1)",
2883
+ "docComment": "",
2884
+ "excerptTokens": [
2885
+ {
2886
+ "kind": "Content",
2887
+ "text": "DocParam: (props: "
2888
+ },
2889
+ {
2890
+ "kind": "Reference",
2891
+ "text": "DocParamProps",
2892
+ "canonicalReference": "@alloy-js/csharp!DocParamProps:interface"
2893
+ },
2894
+ {
2895
+ "kind": "Content",
2896
+ "text": ") => "
2897
+ },
2898
+ {
2899
+ "kind": "Reference",
2900
+ "text": "Children",
2901
+ "canonicalReference": "@alloy-js/core!Children:type"
2902
+ }
2903
+ ],
2904
+ "fileUrlPath": "src/components/doc/comment.tsx",
2905
+ "returnTypeTokenRange": {
2906
+ "startIndex": 3,
2907
+ "endIndex": 4
2908
+ },
2909
+ "releaseTag": "Public",
2910
+ "overloadIndex": 1,
2911
+ "parameters": [
2912
+ {
2913
+ "parameterName": "props",
2914
+ "parameterTypeTokenRange": {
2915
+ "startIndex": 1,
2916
+ "endIndex": 2
2917
+ },
2918
+ "isOptional": false
2919
+ }
2920
+ ],
2921
+ "name": "DocParam"
2922
+ },
2923
+ {
2924
+ "kind": "Interface",
2925
+ "canonicalReference": "@alloy-js/csharp!DocParamProps:interface",
2926
+ "docComment": "",
2927
+ "excerptTokens": [
2928
+ {
2929
+ "kind": "Content",
2930
+ "text": "export interface DocParamProps "
2931
+ }
2932
+ ],
2933
+ "fileUrlPath": "src/components/doc/comment.tsx",
2934
+ "releaseTag": "Public",
2935
+ "name": "DocParamProps",
2936
+ "preserveMemberOrder": false,
2937
+ "members": [
2938
+ {
2939
+ "kind": "PropertySignature",
2940
+ "canonicalReference": "@alloy-js/csharp!DocParamProps#children:member",
2941
+ "docComment": "",
2942
+ "excerptTokens": [
2943
+ {
2944
+ "kind": "Content",
2945
+ "text": "children: "
2946
+ },
2947
+ {
2948
+ "kind": "Reference",
2949
+ "text": "Children",
2950
+ "canonicalReference": "@alloy-js/core!Children:type"
2951
+ },
2952
+ {
2953
+ "kind": "Content",
2954
+ "text": ";"
2955
+ }
2956
+ ],
2957
+ "isReadonly": false,
2958
+ "isOptional": false,
2959
+ "releaseTag": "Public",
2960
+ "name": "children",
2961
+ "propertyTypeTokenRange": {
2962
+ "startIndex": 1,
2963
+ "endIndex": 2
2964
+ }
2965
+ },
2966
+ {
2967
+ "kind": "PropertySignature",
2968
+ "canonicalReference": "@alloy-js/csharp!DocParamProps#name:member",
2969
+ "docComment": "",
2970
+ "excerptTokens": [
2971
+ {
2972
+ "kind": "Content",
2973
+ "text": "name: "
2974
+ },
2975
+ {
2976
+ "kind": "Content",
2977
+ "text": "string"
2978
+ },
2979
+ {
2980
+ "kind": "Content",
2981
+ "text": ";"
2982
+ }
2983
+ ],
2984
+ "isReadonly": false,
2985
+ "isOptional": false,
2986
+ "releaseTag": "Public",
2987
+ "name": "name",
2988
+ "propertyTypeTokenRange": {
2989
+ "startIndex": 1,
2990
+ "endIndex": 2
2991
+ }
2992
+ }
2993
+ ],
2994
+ "extendsTokenRanges": []
2995
+ },
2996
+ {
2997
+ "kind": "Function",
2998
+ "canonicalReference": "@alloy-js/csharp!DocParamRef:function(1)",
2999
+ "docComment": "",
3000
+ "excerptTokens": [
3001
+ {
3002
+ "kind": "Content",
3003
+ "text": "DocParamRef: (props: "
3004
+ },
3005
+ {
3006
+ "kind": "Reference",
3007
+ "text": "DocParamRefProps",
3008
+ "canonicalReference": "@alloy-js/csharp!DocParamRefProps:interface"
3009
+ },
3010
+ {
3011
+ "kind": "Content",
3012
+ "text": ") => "
3013
+ },
3014
+ {
3015
+ "kind": "Content",
3016
+ "text": "string"
3017
+ }
3018
+ ],
3019
+ "fileUrlPath": "src/components/doc/comment.tsx",
3020
+ "returnTypeTokenRange": {
3021
+ "startIndex": 3,
3022
+ "endIndex": 4
3023
+ },
3024
+ "releaseTag": "Public",
3025
+ "overloadIndex": 1,
3026
+ "parameters": [
3027
+ {
3028
+ "parameterName": "props",
3029
+ "parameterTypeTokenRange": {
3030
+ "startIndex": 1,
3031
+ "endIndex": 2
3032
+ },
3033
+ "isOptional": false
3034
+ }
3035
+ ],
3036
+ "name": "DocParamRef"
3037
+ },
3038
+ {
3039
+ "kind": "Interface",
3040
+ "canonicalReference": "@alloy-js/csharp!DocParamRefProps:interface",
3041
+ "docComment": "",
3042
+ "excerptTokens": [
3043
+ {
3044
+ "kind": "Content",
3045
+ "text": "export interface DocParamRefProps "
3046
+ }
3047
+ ],
3048
+ "fileUrlPath": "src/components/doc/comment.tsx",
3049
+ "releaseTag": "Public",
3050
+ "name": "DocParamRefProps",
3051
+ "preserveMemberOrder": false,
3052
+ "members": [
3053
+ {
3054
+ "kind": "PropertySignature",
3055
+ "canonicalReference": "@alloy-js/csharp!DocParamRefProps#name:member",
3056
+ "docComment": "",
3057
+ "excerptTokens": [
3058
+ {
3059
+ "kind": "Content",
3060
+ "text": "name: "
3061
+ },
3062
+ {
3063
+ "kind": "Content",
3064
+ "text": "string"
3065
+ },
3066
+ {
3067
+ "kind": "Content",
3068
+ "text": ";"
3069
+ }
3070
+ ],
3071
+ "isReadonly": false,
3072
+ "isOptional": false,
3073
+ "releaseTag": "Public",
3074
+ "name": "name",
3075
+ "propertyTypeTokenRange": {
3076
+ "startIndex": 1,
3077
+ "endIndex": 2
3078
+ }
3079
+ }
3080
+ ],
3081
+ "extendsTokenRanges": []
3082
+ },
3083
+ {
3084
+ "kind": "Function",
3085
+ "canonicalReference": "@alloy-js/csharp!DocPermission:function(1)",
3086
+ "docComment": "",
3087
+ "excerptTokens": [
3088
+ {
3089
+ "kind": "Content",
3090
+ "text": "DocPermission: (props: "
3091
+ },
3092
+ {
3093
+ "kind": "Reference",
3094
+ "text": "DocCommentProps",
3095
+ "canonicalReference": "@alloy-js/csharp!DocCommentProps:interface"
3096
+ },
3097
+ {
3098
+ "kind": "Content",
3099
+ "text": ") => "
3100
+ },
3101
+ {
3102
+ "kind": "Reference",
3103
+ "text": "Children",
3104
+ "canonicalReference": "@alloy-js/core!Children:type"
3105
+ }
3106
+ ],
3107
+ "fileUrlPath": "src/components/doc/comment.tsx",
3108
+ "returnTypeTokenRange": {
3109
+ "startIndex": 3,
3110
+ "endIndex": 4
3111
+ },
3112
+ "releaseTag": "Public",
3113
+ "overloadIndex": 1,
3114
+ "parameters": [
3115
+ {
3116
+ "parameterName": "props",
3117
+ "parameterTypeTokenRange": {
3118
+ "startIndex": 1,
3119
+ "endIndex": 2
3120
+ },
3121
+ "isOptional": false
3122
+ }
3123
+ ],
3124
+ "name": "DocPermission"
3125
+ },
3126
+ {
3127
+ "kind": "Function",
3128
+ "canonicalReference": "@alloy-js/csharp!DocRemarks:function(1)",
3129
+ "docComment": "",
3130
+ "excerptTokens": [
3131
+ {
3132
+ "kind": "Content",
3133
+ "text": "DocRemarks: (props: "
3134
+ },
3135
+ {
3136
+ "kind": "Reference",
3137
+ "text": "DocCommentProps",
3138
+ "canonicalReference": "@alloy-js/csharp!DocCommentProps:interface"
3139
+ },
3140
+ {
3141
+ "kind": "Content",
3142
+ "text": ") => "
3143
+ },
3144
+ {
3145
+ "kind": "Reference",
3146
+ "text": "Children",
3147
+ "canonicalReference": "@alloy-js/core!Children:type"
3148
+ }
3149
+ ],
3150
+ "fileUrlPath": "src/components/doc/comment.tsx",
3151
+ "returnTypeTokenRange": {
3152
+ "startIndex": 3,
3153
+ "endIndex": 4
3154
+ },
3155
+ "releaseTag": "Public",
3156
+ "overloadIndex": 1,
3157
+ "parameters": [
3158
+ {
3159
+ "parameterName": "props",
3160
+ "parameterTypeTokenRange": {
3161
+ "startIndex": 1,
3162
+ "endIndex": 2
3163
+ },
3164
+ "isOptional": false
3165
+ }
3166
+ ],
3167
+ "name": "DocRemarks"
3168
+ },
3169
+ {
3170
+ "kind": "Function",
3171
+ "canonicalReference": "@alloy-js/csharp!DocReturns:function(1)",
3172
+ "docComment": "",
3173
+ "excerptTokens": [
3174
+ {
3175
+ "kind": "Content",
3176
+ "text": "DocReturns: (props: "
3177
+ },
3178
+ {
3179
+ "kind": "Reference",
3180
+ "text": "DocCommentProps",
3181
+ "canonicalReference": "@alloy-js/csharp!DocCommentProps:interface"
3182
+ },
3183
+ {
3184
+ "kind": "Content",
3185
+ "text": ") => "
3186
+ },
3187
+ {
3188
+ "kind": "Reference",
3189
+ "text": "Children",
3190
+ "canonicalReference": "@alloy-js/core!Children:type"
3191
+ }
3192
+ ],
3193
+ "fileUrlPath": "src/components/doc/comment.tsx",
3194
+ "returnTypeTokenRange": {
3195
+ "startIndex": 3,
3196
+ "endIndex": 4
3197
+ },
3198
+ "releaseTag": "Public",
3199
+ "overloadIndex": 1,
3200
+ "parameters": [
3201
+ {
3202
+ "parameterName": "props",
3203
+ "parameterTypeTokenRange": {
3204
+ "startIndex": 1,
3205
+ "endIndex": 2
3206
+ },
3207
+ "isOptional": false
3208
+ }
3209
+ ],
3210
+ "name": "DocReturns"
3211
+ },
3212
+ {
3213
+ "kind": "Function",
3214
+ "canonicalReference": "@alloy-js/csharp!DocSee:function(1)",
3215
+ "docComment": "",
3216
+ "excerptTokens": [
3217
+ {
3218
+ "kind": "Content",
3219
+ "text": "DocSee: (props: "
3220
+ },
3221
+ {
3222
+ "kind": "Reference",
3223
+ "text": "DocSeeProps",
3224
+ "canonicalReference": "@alloy-js/csharp!DocSeeProps:interface"
3225
+ },
3226
+ {
3227
+ "kind": "Content",
3228
+ "text": ") => "
3229
+ },
3230
+ {
3231
+ "kind": "Reference",
3232
+ "text": "Children",
3233
+ "canonicalReference": "@alloy-js/core!Children:type"
3234
+ }
3235
+ ],
3236
+ "fileUrlPath": "src/components/doc/comment.tsx",
3237
+ "returnTypeTokenRange": {
3238
+ "startIndex": 3,
3239
+ "endIndex": 4
3240
+ },
3241
+ "releaseTag": "Public",
3242
+ "overloadIndex": 1,
3243
+ "parameters": [
3244
+ {
3245
+ "parameterName": "props",
3246
+ "parameterTypeTokenRange": {
3247
+ "startIndex": 1,
3248
+ "endIndex": 2
3249
+ },
3250
+ "isOptional": false
3251
+ }
3252
+ ],
3253
+ "name": "DocSee"
3254
+ },
3255
+ {
3256
+ "kind": "Function",
3257
+ "canonicalReference": "@alloy-js/csharp!DocSeeAlso:function(1)",
3258
+ "docComment": "",
3259
+ "excerptTokens": [
3260
+ {
3261
+ "kind": "Content",
3262
+ "text": "DocSeeAlso: (props: "
3263
+ },
3264
+ {
3265
+ "kind": "Reference",
3266
+ "text": "DocSeeAlsoProps",
3267
+ "canonicalReference": "@alloy-js/csharp!DocSeeAlsoProps:interface"
3268
+ },
3269
+ {
3270
+ "kind": "Content",
3271
+ "text": ") => "
3272
+ },
3273
+ {
3274
+ "kind": "Reference",
3275
+ "text": "Children",
3276
+ "canonicalReference": "@alloy-js/core!Children:type"
3277
+ }
3278
+ ],
3279
+ "fileUrlPath": "src/components/doc/comment.tsx",
3280
+ "returnTypeTokenRange": {
3281
+ "startIndex": 3,
3282
+ "endIndex": 4
3283
+ },
3284
+ "releaseTag": "Public",
3285
+ "overloadIndex": 1,
3286
+ "parameters": [
3287
+ {
3288
+ "parameterName": "props",
3289
+ "parameterTypeTokenRange": {
3290
+ "startIndex": 1,
3291
+ "endIndex": 2
3292
+ },
3293
+ "isOptional": false
3294
+ }
3295
+ ],
3296
+ "name": "DocSeeAlso"
3297
+ },
3298
+ {
3299
+ "kind": "Interface",
3300
+ "canonicalReference": "@alloy-js/csharp!DocSeeAlsoProps:interface",
3301
+ "docComment": "",
3302
+ "excerptTokens": [
3303
+ {
3304
+ "kind": "Content",
3305
+ "text": "export interface DocSeeAlsoProps "
3306
+ }
3307
+ ],
3308
+ "fileUrlPath": "src/components/doc/comment.tsx",
3309
+ "releaseTag": "Public",
3310
+ "name": "DocSeeAlsoProps",
3311
+ "preserveMemberOrder": false,
3312
+ "members": [
3313
+ {
3314
+ "kind": "PropertySignature",
3315
+ "canonicalReference": "@alloy-js/csharp!DocSeeAlsoProps#children:member",
3316
+ "docComment": "",
3317
+ "excerptTokens": [
3318
+ {
3319
+ "kind": "Content",
3320
+ "text": "children?: "
3321
+ },
3322
+ {
3323
+ "kind": "Reference",
3324
+ "text": "Children",
3325
+ "canonicalReference": "@alloy-js/core!Children:type"
3326
+ },
3327
+ {
3328
+ "kind": "Content",
3329
+ "text": ";"
3330
+ }
3331
+ ],
3332
+ "isReadonly": false,
3333
+ "isOptional": true,
3334
+ "releaseTag": "Public",
3335
+ "name": "children",
3336
+ "propertyTypeTokenRange": {
3337
+ "startIndex": 1,
3338
+ "endIndex": 2
3339
+ }
3340
+ },
3341
+ {
3342
+ "kind": "PropertySignature",
3343
+ "canonicalReference": "@alloy-js/csharp!DocSeeAlsoProps#cref:member",
3344
+ "docComment": "",
3345
+ "excerptTokens": [
3346
+ {
3347
+ "kind": "Content",
3348
+ "text": "cref?: "
3349
+ },
3350
+ {
3351
+ "kind": "Content",
3352
+ "text": "string"
3353
+ },
3354
+ {
3355
+ "kind": "Content",
3356
+ "text": ";"
3357
+ }
3358
+ ],
3359
+ "isReadonly": false,
3360
+ "isOptional": true,
3361
+ "releaseTag": "Public",
3362
+ "name": "cref",
3363
+ "propertyTypeTokenRange": {
3364
+ "startIndex": 1,
3365
+ "endIndex": 2
3366
+ }
3367
+ },
3368
+ {
3369
+ "kind": "PropertySignature",
3370
+ "canonicalReference": "@alloy-js/csharp!DocSeeAlsoProps#href:member",
3371
+ "docComment": "",
3372
+ "excerptTokens": [
3373
+ {
3374
+ "kind": "Content",
3375
+ "text": "href?: "
3376
+ },
3377
+ {
3378
+ "kind": "Content",
3379
+ "text": "string"
3380
+ },
3381
+ {
3382
+ "kind": "Content",
3383
+ "text": ";"
3384
+ }
3385
+ ],
3386
+ "isReadonly": false,
3387
+ "isOptional": true,
3388
+ "releaseTag": "Public",
3389
+ "name": "href",
3390
+ "propertyTypeTokenRange": {
3391
+ "startIndex": 1,
3392
+ "endIndex": 2
3393
+ }
3394
+ }
3395
+ ],
3396
+ "extendsTokenRanges": []
3397
+ },
3398
+ {
3399
+ "kind": "Interface",
3400
+ "canonicalReference": "@alloy-js/csharp!DocSeeProps:interface",
3401
+ "docComment": "",
3402
+ "excerptTokens": [
3403
+ {
3404
+ "kind": "Content",
3405
+ "text": "export interface DocSeeProps "
3406
+ }
3407
+ ],
3408
+ "fileUrlPath": "src/components/doc/comment.tsx",
3409
+ "releaseTag": "Public",
3410
+ "name": "DocSeeProps",
3411
+ "preserveMemberOrder": false,
3412
+ "members": [
3413
+ {
3414
+ "kind": "PropertySignature",
3415
+ "canonicalReference": "@alloy-js/csharp!DocSeeProps#children:member",
3416
+ "docComment": "",
3417
+ "excerptTokens": [
3418
+ {
3419
+ "kind": "Content",
3420
+ "text": "children?: "
3421
+ },
3422
+ {
3423
+ "kind": "Reference",
3424
+ "text": "Children",
3425
+ "canonicalReference": "@alloy-js/core!Children:type"
3426
+ },
3427
+ {
3428
+ "kind": "Content",
3429
+ "text": ";"
3430
+ }
3431
+ ],
3432
+ "isReadonly": false,
3433
+ "isOptional": true,
3434
+ "releaseTag": "Public",
3435
+ "name": "children",
3436
+ "propertyTypeTokenRange": {
3437
+ "startIndex": 1,
3438
+ "endIndex": 2
3439
+ }
3440
+ },
3441
+ {
3442
+ "kind": "PropertySignature",
3443
+ "canonicalReference": "@alloy-js/csharp!DocSeeProps#cref:member",
3444
+ "docComment": "",
3445
+ "excerptTokens": [
3446
+ {
3447
+ "kind": "Content",
3448
+ "text": "cref?: "
3449
+ },
3450
+ {
3451
+ "kind": "Content",
3452
+ "text": "string"
3453
+ },
3454
+ {
3455
+ "kind": "Content",
3456
+ "text": ";"
3457
+ }
3458
+ ],
3459
+ "isReadonly": false,
3460
+ "isOptional": true,
3461
+ "releaseTag": "Public",
3462
+ "name": "cref",
3463
+ "propertyTypeTokenRange": {
3464
+ "startIndex": 1,
3465
+ "endIndex": 2
3466
+ }
3467
+ },
3468
+ {
3469
+ "kind": "PropertySignature",
3470
+ "canonicalReference": "@alloy-js/csharp!DocSeeProps#href:member",
3471
+ "docComment": "",
3472
+ "excerptTokens": [
3473
+ {
3474
+ "kind": "Content",
3475
+ "text": "href?: "
3476
+ },
3477
+ {
3478
+ "kind": "Content",
3479
+ "text": "string"
3480
+ },
3481
+ {
3482
+ "kind": "Content",
3483
+ "text": ";"
3484
+ }
3485
+ ],
3486
+ "isReadonly": false,
3487
+ "isOptional": true,
3488
+ "releaseTag": "Public",
3489
+ "name": "href",
3490
+ "propertyTypeTokenRange": {
3491
+ "startIndex": 1,
3492
+ "endIndex": 2
3493
+ }
3494
+ },
3495
+ {
3496
+ "kind": "PropertySignature",
3497
+ "canonicalReference": "@alloy-js/csharp!DocSeeProps#langword:member",
3498
+ "docComment": "",
3499
+ "excerptTokens": [
3500
+ {
3501
+ "kind": "Content",
3502
+ "text": "langword?: "
3503
+ },
3504
+ {
3505
+ "kind": "Content",
3506
+ "text": "string"
3507
+ },
3508
+ {
3509
+ "kind": "Content",
3510
+ "text": ";"
3511
+ }
3512
+ ],
3513
+ "isReadonly": false,
3514
+ "isOptional": true,
3515
+ "releaseTag": "Public",
3516
+ "name": "langword",
3517
+ "propertyTypeTokenRange": {
3518
+ "startIndex": 1,
3519
+ "endIndex": 2
3520
+ }
3521
+ }
3522
+ ],
3523
+ "extendsTokenRanges": []
3524
+ },
3525
+ {
3526
+ "kind": "Function",
3527
+ "canonicalReference": "@alloy-js/csharp!DocSummary:function(1)",
3528
+ "docComment": "",
3529
+ "excerptTokens": [
3530
+ {
3531
+ "kind": "Content",
3532
+ "text": "DocSummary: (props: "
3533
+ },
3534
+ {
3535
+ "kind": "Reference",
3536
+ "text": "DocCommentProps",
3537
+ "canonicalReference": "@alloy-js/csharp!DocCommentProps:interface"
3538
+ },
3539
+ {
3540
+ "kind": "Content",
3541
+ "text": ") => "
3542
+ },
3543
+ {
3544
+ "kind": "Reference",
3545
+ "text": "Children",
3546
+ "canonicalReference": "@alloy-js/core!Children:type"
3547
+ }
3548
+ ],
3549
+ "fileUrlPath": "src/components/doc/comment.tsx",
3550
+ "returnTypeTokenRange": {
3551
+ "startIndex": 3,
3552
+ "endIndex": 4
3553
+ },
3554
+ "releaseTag": "Public",
3555
+ "overloadIndex": 1,
3556
+ "parameters": [
3557
+ {
3558
+ "parameterName": "props",
3559
+ "parameterTypeTokenRange": {
3560
+ "startIndex": 1,
3561
+ "endIndex": 2
3562
+ },
3563
+ "isOptional": false
3564
+ }
3565
+ ],
3566
+ "name": "DocSummary"
3567
+ },
3568
+ {
3569
+ "kind": "Function",
3570
+ "canonicalReference": "@alloy-js/csharp!DocTypeParam:function(1)",
3571
+ "docComment": "",
3572
+ "excerptTokens": [
3573
+ {
3574
+ "kind": "Content",
3575
+ "text": "DocTypeParam: (props: "
3576
+ },
3577
+ {
3578
+ "kind": "Reference",
3579
+ "text": "DocTypeParamProps",
3580
+ "canonicalReference": "@alloy-js/csharp!DocTypeParamProps:interface"
3581
+ },
3582
+ {
3583
+ "kind": "Content",
3584
+ "text": ") => "
3585
+ },
3586
+ {
3587
+ "kind": "Reference",
3588
+ "text": "Children",
3589
+ "canonicalReference": "@alloy-js/core!Children:type"
3590
+ }
3591
+ ],
3592
+ "fileUrlPath": "src/components/doc/comment.tsx",
3593
+ "returnTypeTokenRange": {
3594
+ "startIndex": 3,
3595
+ "endIndex": 4
3596
+ },
3597
+ "releaseTag": "Public",
3598
+ "overloadIndex": 1,
3599
+ "parameters": [
3600
+ {
3601
+ "parameterName": "props",
3602
+ "parameterTypeTokenRange": {
3603
+ "startIndex": 1,
3604
+ "endIndex": 2
3605
+ },
3606
+ "isOptional": false
3607
+ }
3608
+ ],
3609
+ "name": "DocTypeParam"
3610
+ },
3611
+ {
3612
+ "kind": "Interface",
3613
+ "canonicalReference": "@alloy-js/csharp!DocTypeParamProps:interface",
3614
+ "docComment": "",
3615
+ "excerptTokens": [
3616
+ {
3617
+ "kind": "Content",
3618
+ "text": "export interface DocTypeParamProps "
3619
+ }
3620
+ ],
3621
+ "fileUrlPath": "src/components/doc/comment.tsx",
3622
+ "releaseTag": "Public",
3623
+ "name": "DocTypeParamProps",
3624
+ "preserveMemberOrder": false,
3625
+ "members": [
3626
+ {
3627
+ "kind": "PropertySignature",
3628
+ "canonicalReference": "@alloy-js/csharp!DocTypeParamProps#children:member",
3629
+ "docComment": "",
3630
+ "excerptTokens": [
3631
+ {
3632
+ "kind": "Content",
3633
+ "text": "children: "
3634
+ },
3635
+ {
3636
+ "kind": "Reference",
3637
+ "text": "Children",
3638
+ "canonicalReference": "@alloy-js/core!Children:type"
3639
+ },
3640
+ {
3641
+ "kind": "Content",
3642
+ "text": ";"
3643
+ }
3644
+ ],
3645
+ "isReadonly": false,
3646
+ "isOptional": false,
3647
+ "releaseTag": "Public",
3648
+ "name": "children",
3649
+ "propertyTypeTokenRange": {
3650
+ "startIndex": 1,
3651
+ "endIndex": 2
3652
+ }
3653
+ },
3654
+ {
3655
+ "kind": "PropertySignature",
3656
+ "canonicalReference": "@alloy-js/csharp!DocTypeParamProps#name:member",
3657
+ "docComment": "",
3658
+ "excerptTokens": [
3659
+ {
3660
+ "kind": "Content",
3661
+ "text": "name: "
3662
+ },
3663
+ {
3664
+ "kind": "Content",
3665
+ "text": "string"
3666
+ },
3667
+ {
3668
+ "kind": "Content",
3669
+ "text": ";"
3670
+ }
3671
+ ],
3672
+ "isReadonly": false,
3673
+ "isOptional": false,
3674
+ "releaseTag": "Public",
3675
+ "name": "name",
3676
+ "propertyTypeTokenRange": {
3677
+ "startIndex": 1,
3678
+ "endIndex": 2
3679
+ }
3680
+ }
3681
+ ],
3682
+ "extendsTokenRanges": []
3683
+ },
3684
+ {
3685
+ "kind": "Function",
3686
+ "canonicalReference": "@alloy-js/csharp!DocTypeParamRef:function(1)",
3687
+ "docComment": "",
3688
+ "excerptTokens": [
3689
+ {
3690
+ "kind": "Content",
3691
+ "text": "DocTypeParamRef: (props: "
3692
+ },
3693
+ {
3694
+ "kind": "Reference",
3695
+ "text": "DocTypeParamRefProps",
3696
+ "canonicalReference": "@alloy-js/csharp!DocTypeParamRefProps:interface"
3697
+ },
3698
+ {
3699
+ "kind": "Content",
3700
+ "text": ") => "
3701
+ },
3702
+ {
3703
+ "kind": "Content",
3704
+ "text": "string"
3705
+ }
3706
+ ],
3707
+ "fileUrlPath": "src/components/doc/comment.tsx",
3708
+ "returnTypeTokenRange": {
3709
+ "startIndex": 3,
3710
+ "endIndex": 4
3711
+ },
3712
+ "releaseTag": "Public",
3713
+ "overloadIndex": 1,
3714
+ "parameters": [
3715
+ {
3716
+ "parameterName": "props",
3717
+ "parameterTypeTokenRange": {
3718
+ "startIndex": 1,
3719
+ "endIndex": 2
3720
+ },
3721
+ "isOptional": false
3722
+ }
3723
+ ],
3724
+ "name": "DocTypeParamRef"
3725
+ },
3726
+ {
3727
+ "kind": "Interface",
3728
+ "canonicalReference": "@alloy-js/csharp!DocTypeParamRefProps:interface",
3729
+ "docComment": "",
3730
+ "excerptTokens": [
3731
+ {
3732
+ "kind": "Content",
3733
+ "text": "export interface DocTypeParamRefProps "
3734
+ }
3735
+ ],
3736
+ "fileUrlPath": "src/components/doc/comment.tsx",
3737
+ "releaseTag": "Public",
3738
+ "name": "DocTypeParamRefProps",
3739
+ "preserveMemberOrder": false,
3740
+ "members": [
3741
+ {
3742
+ "kind": "PropertySignature",
3743
+ "canonicalReference": "@alloy-js/csharp!DocTypeParamRefProps#name:member",
3744
+ "docComment": "",
3745
+ "excerptTokens": [
3746
+ {
3747
+ "kind": "Content",
3748
+ "text": "name: "
3749
+ },
3750
+ {
3751
+ "kind": "Content",
3752
+ "text": "string"
3753
+ },
3754
+ {
3755
+ "kind": "Content",
3756
+ "text": ";"
3757
+ }
3758
+ ],
3759
+ "isReadonly": false,
3760
+ "isOptional": false,
3761
+ "releaseTag": "Public",
3762
+ "name": "name",
3763
+ "propertyTypeTokenRange": {
3764
+ "startIndex": 1,
3765
+ "endIndex": 2
3766
+ }
3767
+ }
3768
+ ],
3769
+ "extendsTokenRanges": []
3770
+ },
3771
+ {
3772
+ "kind": "Function",
3773
+ "canonicalReference": "@alloy-js/csharp!DocValue:function(1)",
3774
+ "docComment": "",
3775
+ "excerptTokens": [
3776
+ {
3777
+ "kind": "Content",
3778
+ "text": "DocValue: (props: "
3779
+ },
3780
+ {
3781
+ "kind": "Reference",
3782
+ "text": "DocCommentProps",
3783
+ "canonicalReference": "@alloy-js/csharp!DocCommentProps:interface"
3784
+ },
3785
+ {
3786
+ "kind": "Content",
3787
+ "text": ") => "
3788
+ },
3789
+ {
3790
+ "kind": "Reference",
3791
+ "text": "Children",
3792
+ "canonicalReference": "@alloy-js/core!Children:type"
3793
+ }
3794
+ ],
3795
+ "fileUrlPath": "src/components/doc/comment.tsx",
3796
+ "returnTypeTokenRange": {
3797
+ "startIndex": 3,
3798
+ "endIndex": 4
3799
+ },
3800
+ "releaseTag": "Public",
3801
+ "overloadIndex": 1,
3802
+ "parameters": [
3803
+ {
3804
+ "parameterName": "props",
3805
+ "parameterTypeTokenRange": {
3806
+ "startIndex": 1,
3807
+ "endIndex": 2
3808
+ },
3809
+ "isOptional": false
3810
+ }
3811
+ ],
3812
+ "name": "DocValue"
3813
+ },
3814
+ {
3815
+ "kind": "Function",
3816
+ "canonicalReference": "@alloy-js/csharp!DocWhen:function(1)",
3817
+ "docComment": "/**\n * Conditionally render the given doc in a <DocComment /> component and tail with a line\n */\n",
3818
+ "excerptTokens": [
3819
+ {
3820
+ "kind": "Content",
3821
+ "text": "export declare function DocWhen(props: "
3822
+ },
3823
+ {
3824
+ "kind": "Reference",
3825
+ "text": "DocWhenProps",
3826
+ "canonicalReference": "@alloy-js/csharp!DocWhenProps:interface"
3827
+ },
3828
+ {
3829
+ "kind": "Content",
3830
+ "text": "): "
3831
+ },
3832
+ {
3833
+ "kind": "Reference",
3834
+ "text": "Children",
3835
+ "canonicalReference": "@alloy-js/core!Children:type"
3836
+ },
3837
+ {
3838
+ "kind": "Content",
3839
+ "text": ";"
3840
+ }
3841
+ ],
3842
+ "fileUrlPath": "src/components/doc/comment.tsx",
3843
+ "returnTypeTokenRange": {
3844
+ "startIndex": 3,
3845
+ "endIndex": 4
3846
+ },
3847
+ "releaseTag": "Public",
3848
+ "overloadIndex": 1,
3849
+ "parameters": [
3850
+ {
3851
+ "parameterName": "props",
3852
+ "parameterTypeTokenRange": {
3853
+ "startIndex": 1,
3854
+ "endIndex": 2
3855
+ },
3856
+ "isOptional": false
3857
+ }
3858
+ ],
3859
+ "name": "DocWhen"
3860
+ },
3861
+ {
3862
+ "kind": "Interface",
3863
+ "canonicalReference": "@alloy-js/csharp!DocWhenProps:interface",
3864
+ "docComment": "",
3865
+ "excerptTokens": [
3866
+ {
3867
+ "kind": "Content",
3868
+ "text": "export interface DocWhenProps "
3869
+ }
3870
+ ],
3871
+ "fileUrlPath": "src/components/doc/comment.tsx",
3872
+ "releaseTag": "Public",
3873
+ "name": "DocWhenProps",
3874
+ "preserveMemberOrder": false,
3875
+ "members": [
3876
+ {
3877
+ "kind": "PropertySignature",
3878
+ "canonicalReference": "@alloy-js/csharp!DocWhenProps#doc:member",
3879
+ "docComment": "",
3880
+ "excerptTokens": [
3881
+ {
3882
+ "kind": "Content",
3883
+ "text": "doc: "
3884
+ },
3885
+ {
3886
+ "kind": "Reference",
3887
+ "text": "Children",
3888
+ "canonicalReference": "@alloy-js/core!Children:type"
3889
+ },
3890
+ {
3891
+ "kind": "Content",
3892
+ "text": " | undefined"
3893
+ },
3894
+ {
3895
+ "kind": "Content",
3896
+ "text": ";"
3897
+ }
3898
+ ],
3899
+ "isReadonly": false,
3900
+ "isOptional": false,
3901
+ "releaseTag": "Public",
3902
+ "name": "doc",
3903
+ "propertyTypeTokenRange": {
3904
+ "startIndex": 1,
3905
+ "endIndex": 3
3906
+ }
3907
+ }
3908
+ ],
3909
+ "extendsTokenRanges": []
3910
+ },
3911
+ {
3912
+ "kind": "Function",
3913
+ "canonicalReference": "@alloy-js/csharp!EnumDeclaration:function(1)",
3914
+ "docComment": "/**\n * A C# enum declaration\n *\n * @example\n * ```tsx\n * <EnumDeclaration public name=\"Color\">\n * <EnumMember name=\"Red\" />\n * <EnumMember name=\"Green\" />\n * <EnumMember name=\"Blue\" />\n * </EnumDeclaration>\n * ```\n *\n * This will produce:\n * ```csharp\n * public enum Color\n * {\n * Red,\n * Green,\n * Blue\n * }\n * ```\n *\n */\n",
3915
+ "excerptTokens": [
3916
+ {
3917
+ "kind": "Content",
3918
+ "text": "export declare function EnumDeclaration(props: "
3919
+ },
3920
+ {
3921
+ "kind": "Reference",
3922
+ "text": "EnumDeclarationProps",
3923
+ "canonicalReference": "@alloy-js/csharp!EnumDeclarationProps:interface"
3924
+ },
3925
+ {
3926
+ "kind": "Content",
3927
+ "text": "): "
3928
+ },
3929
+ {
3930
+ "kind": "Reference",
3931
+ "text": "core.Children",
3932
+ "canonicalReference": "@alloy-js/core!Children:type"
3933
+ },
3934
+ {
3935
+ "kind": "Content",
3936
+ "text": ";"
3937
+ }
3938
+ ],
3939
+ "fileUrlPath": "src/components/EnumDeclaration.tsx",
3940
+ "returnTypeTokenRange": {
3941
+ "startIndex": 3,
3942
+ "endIndex": 4
3943
+ },
3944
+ "releaseTag": "Public",
3945
+ "overloadIndex": 1,
3946
+ "parameters": [
3947
+ {
3948
+ "parameterName": "props",
3949
+ "parameterTypeTokenRange": {
3950
+ "startIndex": 1,
3951
+ "endIndex": 2
3952
+ },
3953
+ "isOptional": false
3954
+ }
3955
+ ],
3956
+ "name": "EnumDeclaration"
3957
+ },
3958
+ {
3959
+ "kind": "Interface",
3960
+ "canonicalReference": "@alloy-js/csharp!EnumDeclarationProps:interface",
3961
+ "docComment": "",
3962
+ "excerptTokens": [
3963
+ {
3964
+ "kind": "Content",
3965
+ "text": "export interface EnumDeclarationProps extends "
3966
+ },
3967
+ {
3968
+ "kind": "Reference",
3969
+ "text": "AccessModifiers",
3970
+ "canonicalReference": "@alloy-js/csharp!AccessModifiers:interface"
3971
+ },
3972
+ {
3973
+ "kind": "Content",
3974
+ "text": " "
3975
+ }
3976
+ ],
3977
+ "fileUrlPath": "src/components/EnumDeclaration.tsx",
3978
+ "releaseTag": "Public",
3979
+ "name": "EnumDeclarationProps",
3980
+ "preserveMemberOrder": false,
3981
+ "members": [
3982
+ {
3983
+ "kind": "PropertySignature",
3984
+ "canonicalReference": "@alloy-js/csharp!EnumDeclarationProps#children:member",
3985
+ "docComment": "",
3986
+ "excerptTokens": [
3987
+ {
3988
+ "kind": "Content",
3989
+ "text": "children?: "
3990
+ },
3991
+ {
3992
+ "kind": "Reference",
3993
+ "text": "core.Children",
3994
+ "canonicalReference": "@alloy-js/core!Children:type"
3995
+ },
3996
+ {
3997
+ "kind": "Content",
3998
+ "text": ";"
3999
+ }
4000
+ ],
4001
+ "isReadonly": false,
4002
+ "isOptional": true,
4003
+ "releaseTag": "Public",
4004
+ "name": "children",
4005
+ "propertyTypeTokenRange": {
4006
+ "startIndex": 1,
4007
+ "endIndex": 2
4008
+ }
4009
+ },
4010
+ {
4011
+ "kind": "PropertySignature",
4012
+ "canonicalReference": "@alloy-js/csharp!EnumDeclarationProps#name:member",
4013
+ "docComment": "",
4014
+ "excerptTokens": [
4015
+ {
4016
+ "kind": "Content",
4017
+ "text": "name: "
4018
+ },
4019
+ {
4020
+ "kind": "Content",
4021
+ "text": "string"
4022
+ },
4023
+ {
4024
+ "kind": "Content",
4025
+ "text": ";"
4026
+ }
4027
+ ],
4028
+ "isReadonly": false,
4029
+ "isOptional": false,
4030
+ "releaseTag": "Public",
4031
+ "name": "name",
4032
+ "propertyTypeTokenRange": {
4033
+ "startIndex": 1,
4034
+ "endIndex": 2
4035
+ }
4036
+ },
4037
+ {
4038
+ "kind": "PropertySignature",
4039
+ "canonicalReference": "@alloy-js/csharp!EnumDeclarationProps#refkey:member",
4040
+ "docComment": "",
4041
+ "excerptTokens": [
4042
+ {
4043
+ "kind": "Content",
4044
+ "text": "refkey?: "
4045
+ },
4046
+ {
4047
+ "kind": "Reference",
4048
+ "text": "core.Refkey",
4049
+ "canonicalReference": "@alloy-js/core!Refkey:type"
4050
+ },
4051
+ {
4052
+ "kind": "Content",
4053
+ "text": ";"
4054
+ }
4055
+ ],
4056
+ "isReadonly": false,
4057
+ "isOptional": true,
4058
+ "releaseTag": "Public",
4059
+ "name": "refkey",
4060
+ "propertyTypeTokenRange": {
4061
+ "startIndex": 1,
4062
+ "endIndex": 2
4063
+ }
4064
+ }
4065
+ ],
4066
+ "extendsTokenRanges": [
4067
+ {
4068
+ "startIndex": 1,
4069
+ "endIndex": 2
4070
+ }
4071
+ ]
4072
+ },
4073
+ {
4074
+ "kind": "Function",
4075
+ "canonicalReference": "@alloy-js/csharp!EnumMember:function(1)",
4076
+ "docComment": "",
4077
+ "excerptTokens": [
4078
+ {
4079
+ "kind": "Content",
4080
+ "text": "export declare function EnumMember(props: "
4081
+ },
4082
+ {
4083
+ "kind": "Reference",
4084
+ "text": "EnumMemberProps",
4085
+ "canonicalReference": "@alloy-js/csharp!EnumMemberProps:interface"
4086
+ },
4087
+ {
4088
+ "kind": "Content",
4089
+ "text": "): "
4090
+ },
4091
+ {
4092
+ "kind": "Reference",
4093
+ "text": "core.Children",
4094
+ "canonicalReference": "@alloy-js/core!Children:type"
4095
+ },
4096
+ {
4097
+ "kind": "Content",
4098
+ "text": ";"
4099
+ }
4100
+ ],
4101
+ "fileUrlPath": "src/components/EnumDeclaration.tsx",
4102
+ "returnTypeTokenRange": {
4103
+ "startIndex": 3,
4104
+ "endIndex": 4
4105
+ },
4106
+ "releaseTag": "Public",
4107
+ "overloadIndex": 1,
4108
+ "parameters": [
4109
+ {
4110
+ "parameterName": "props",
4111
+ "parameterTypeTokenRange": {
4112
+ "startIndex": 1,
4113
+ "endIndex": 2
4114
+ },
4115
+ "isOptional": false
4116
+ }
4117
+ ],
4118
+ "name": "EnumMember"
4119
+ },
4120
+ {
4121
+ "kind": "Interface",
4122
+ "canonicalReference": "@alloy-js/csharp!EnumMemberProps:interface",
4123
+ "docComment": "",
4124
+ "excerptTokens": [
4125
+ {
4126
+ "kind": "Content",
4127
+ "text": "export interface EnumMemberProps "
4128
+ }
4129
+ ],
4130
+ "fileUrlPath": "src/components/EnumDeclaration.tsx",
4131
+ "releaseTag": "Public",
4132
+ "name": "EnumMemberProps",
4133
+ "preserveMemberOrder": false,
4134
+ "members": [
4135
+ {
4136
+ "kind": "PropertySignature",
4137
+ "canonicalReference": "@alloy-js/csharp!EnumMemberProps#name:member",
4138
+ "docComment": "",
4139
+ "excerptTokens": [
4140
+ {
4141
+ "kind": "Content",
4142
+ "text": "name: "
4143
+ },
4144
+ {
4145
+ "kind": "Content",
4146
+ "text": "string"
4147
+ },
4148
+ {
4149
+ "kind": "Content",
4150
+ "text": ";"
4151
+ }
4152
+ ],
4153
+ "isReadonly": false,
4154
+ "isOptional": false,
4155
+ "releaseTag": "Public",
4156
+ "name": "name",
4157
+ "propertyTypeTokenRange": {
4158
+ "startIndex": 1,
4159
+ "endIndex": 2
4160
+ }
4161
+ },
4162
+ {
4163
+ "kind": "PropertySignature",
4164
+ "canonicalReference": "@alloy-js/csharp!EnumMemberProps#refkey:member",
4165
+ "docComment": "",
4166
+ "excerptTokens": [
4167
+ {
4168
+ "kind": "Content",
4169
+ "text": "refkey?: "
4170
+ },
4171
+ {
4172
+ "kind": "Reference",
4173
+ "text": "core.Refkey",
4174
+ "canonicalReference": "@alloy-js/core!Refkey:type"
4175
+ },
4176
+ {
4177
+ "kind": "Content",
4178
+ "text": ";"
4179
+ }
4180
+ ],
4181
+ "isReadonly": false,
4182
+ "isOptional": true,
4183
+ "releaseTag": "Public",
4184
+ "name": "refkey",
4185
+ "propertyTypeTokenRange": {
4186
+ "startIndex": 1,
4187
+ "endIndex": 2
4188
+ }
4189
+ }
4190
+ ],
4191
+ "extendsTokenRanges": []
4192
+ },
4193
+ {
4194
+ "kind": "Function",
4195
+ "canonicalReference": "@alloy-js/csharp!getAccessModifier:function(1)",
4196
+ "docComment": "",
4197
+ "excerptTokens": [
4198
+ {
4199
+ "kind": "Content",
4200
+ "text": "getAccessModifier: (data: "
4201
+ },
4202
+ {
4203
+ "kind": "Reference",
4204
+ "text": "AccessModifiers",
4205
+ "canonicalReference": "@alloy-js/csharp!AccessModifiers:interface"
4206
+ },
4207
+ {
4208
+ "kind": "Content",
4209
+ "text": ") => "
4210
+ },
4211
+ {
4212
+ "kind": "Content",
4213
+ "text": "string"
4214
+ }
4215
+ ],
4216
+ "fileUrlPath": "src/modifiers.ts",
4217
+ "returnTypeTokenRange": {
4218
+ "startIndex": 3,
4219
+ "endIndex": 4
4220
+ },
4221
+ "releaseTag": "Public",
4222
+ "overloadIndex": 1,
4223
+ "parameters": [
4224
+ {
4225
+ "parameterName": "data",
4226
+ "parameterTypeTokenRange": {
4227
+ "startIndex": 1,
4228
+ "endIndex": 2
4229
+ },
4230
+ "isOptional": false
4231
+ }
4232
+ ],
4233
+ "name": "getAccessModifier"
4234
+ },
4235
+ {
4236
+ "kind": "Function",
4237
+ "canonicalReference": "@alloy-js/csharp!getAsyncModifier:function(1)",
4238
+ "docComment": "",
4239
+ "excerptTokens": [
4240
+ {
4241
+ "kind": "Content",
4242
+ "text": "export declare function getAsyncModifier(async?: "
4243
+ },
4244
+ {
4245
+ "kind": "Content",
4246
+ "text": "boolean"
4247
+ },
4248
+ {
4249
+ "kind": "Content",
4250
+ "text": "): "
4251
+ },
4252
+ {
4253
+ "kind": "Content",
4254
+ "text": "string"
4255
+ },
4256
+ {
4257
+ "kind": "Content",
4258
+ "text": ";"
4259
+ }
4260
+ ],
4261
+ "fileUrlPath": "src/modifiers.ts",
4262
+ "returnTypeTokenRange": {
4263
+ "startIndex": 3,
4264
+ "endIndex": 4
4265
+ },
4266
+ "releaseTag": "Public",
4267
+ "overloadIndex": 1,
4268
+ "parameters": [
4269
+ {
4270
+ "parameterName": "async",
4271
+ "parameterTypeTokenRange": {
4272
+ "startIndex": 1,
4273
+ "endIndex": 2
4274
+ },
4275
+ "isOptional": true
4276
+ }
4277
+ ],
4278
+ "name": "getAsyncModifier"
4279
+ },
4280
+ {
4281
+ "kind": "Function",
4282
+ "canonicalReference": "@alloy-js/csharp!InterfaceDeclaration:function(1)",
4283
+ "docComment": "/**\n * CSharp interface declaration.\n *\n * @example\n * ```tsx\n * <InterfaceDeclaration public name=\"IMyInterface\">\n * <InterfaceMember public name=\"MyProperty\" type=\"int\" />\n * <InterfaceMethod public name=\"MyMethod\" returnType=\"void\">\n * <Parameter name=\"value\" type=\"int\" />\n * </InterfaceMethod>\n * </InterfaceDeclaration>\n * ```\n *\n * This will produce:\n * ```csharp\n * public interface MyIface\n * {\n * public int MyProperty { get; set; }\n * public void MyMethod(int value);\n * }\n * ```\n *\n */\n",
4284
+ "excerptTokens": [
4285
+ {
4286
+ "kind": "Content",
4287
+ "text": "export declare function InterfaceDeclaration(props: "
4288
+ },
4289
+ {
4290
+ "kind": "Reference",
4291
+ "text": "InterfaceDeclarationProps",
4292
+ "canonicalReference": "@alloy-js/csharp!InterfaceDeclarationProps:interface"
4293
+ },
4294
+ {
4295
+ "kind": "Content",
4296
+ "text": "): "
4297
+ },
4298
+ {
4299
+ "kind": "Reference",
4300
+ "text": "core.Children",
4301
+ "canonicalReference": "@alloy-js/core!Children:type"
4302
+ },
4303
+ {
4304
+ "kind": "Content",
4305
+ "text": ";"
4306
+ }
4307
+ ],
4308
+ "fileUrlPath": "src/components/interface/declaration.tsx",
4309
+ "returnTypeTokenRange": {
4310
+ "startIndex": 3,
4311
+ "endIndex": 4
4312
+ },
4313
+ "releaseTag": "Public",
4314
+ "overloadIndex": 1,
4315
+ "parameters": [
4316
+ {
4317
+ "parameterName": "props",
4318
+ "parameterTypeTokenRange": {
4319
+ "startIndex": 1,
4320
+ "endIndex": 2
4321
+ },
4322
+ "isOptional": false
4323
+ }
4324
+ ],
4325
+ "name": "InterfaceDeclaration"
4326
+ },
4327
+ {
4328
+ "kind": "Interface",
4329
+ "canonicalReference": "@alloy-js/csharp!InterfaceDeclarationProps:interface",
4330
+ "docComment": "",
4331
+ "excerptTokens": [
4332
+ {
4333
+ "kind": "Content",
4334
+ "text": "export interface InterfaceDeclarationProps extends "
4335
+ },
4336
+ {
4337
+ "kind": "Reference",
4338
+ "text": "Omit",
4339
+ "canonicalReference": "!Omit:type"
4340
+ },
4341
+ {
4342
+ "kind": "Content",
4343
+ "text": "<"
4344
+ },
4345
+ {
4346
+ "kind": "Reference",
4347
+ "text": "core.DeclarationProps",
4348
+ "canonicalReference": "@alloy-js/core!DeclarationProps:type"
4349
+ },
4350
+ {
4351
+ "kind": "Content",
4352
+ "text": ", \"nameKind\">"
4353
+ },
4354
+ {
4355
+ "kind": "Content",
4356
+ "text": ", "
4357
+ },
4358
+ {
4359
+ "kind": "Reference",
4360
+ "text": "AccessModifiers",
4361
+ "canonicalReference": "@alloy-js/csharp!AccessModifiers:interface"
4362
+ },
4363
+ {
4364
+ "kind": "Content",
4365
+ "text": ", "
4366
+ },
4367
+ {
4368
+ "kind": "Reference",
4369
+ "text": "InterfaceModifiers",
4370
+ "canonicalReference": "@alloy-js/csharp!InterfaceModifiers:interface"
4371
+ },
4372
+ {
4373
+ "kind": "Content",
4374
+ "text": " "
4375
+ }
4376
+ ],
4377
+ "fileUrlPath": "src/components/interface/declaration.tsx",
4378
+ "releaseTag": "Public",
4379
+ "name": "InterfaceDeclarationProps",
4380
+ "preserveMemberOrder": false,
4381
+ "members": [
4382
+ {
4383
+ "kind": "PropertySignature",
4384
+ "canonicalReference": "@alloy-js/csharp!InterfaceDeclarationProps#doc:member",
4385
+ "docComment": "/**\n * Doc comment\n */\n",
4386
+ "excerptTokens": [
4387
+ {
4388
+ "kind": "Content",
4389
+ "text": "doc?: "
4390
+ },
4391
+ {
4392
+ "kind": "Reference",
4393
+ "text": "core.Children",
4394
+ "canonicalReference": "@alloy-js/core!Children:type"
4395
+ },
4396
+ {
4397
+ "kind": "Content",
4398
+ "text": ";"
4399
+ }
4400
+ ],
4401
+ "isReadonly": false,
4402
+ "isOptional": true,
4403
+ "releaseTag": "Public",
4404
+ "name": "doc",
4405
+ "propertyTypeTokenRange": {
4406
+ "startIndex": 1,
4407
+ "endIndex": 2
4408
+ }
4409
+ },
4410
+ {
4411
+ "kind": "PropertySignature",
4412
+ "canonicalReference": "@alloy-js/csharp!InterfaceDeclarationProps#name:member",
4413
+ "docComment": "",
4414
+ "excerptTokens": [
4415
+ {
4416
+ "kind": "Content",
4417
+ "text": "name: "
4418
+ },
4419
+ {
4420
+ "kind": "Content",
1789
4421
  "text": "string"
1790
4422
  },
1791
4423
  {
@@ -1800,31 +4432,177 @@
1800
4432
  "propertyTypeTokenRange": {
1801
4433
  "startIndex": 1,
1802
4434
  "endIndex": 2
1803
- }
1804
- },
4435
+ }
4436
+ },
4437
+ {
4438
+ "kind": "PropertySignature",
4439
+ "canonicalReference": "@alloy-js/csharp!InterfaceDeclarationProps#refkey:member",
4440
+ "docComment": "",
4441
+ "excerptTokens": [
4442
+ {
4443
+ "kind": "Content",
4444
+ "text": "refkey?: "
4445
+ },
4446
+ {
4447
+ "kind": "Reference",
4448
+ "text": "core.Refkey",
4449
+ "canonicalReference": "@alloy-js/core!Refkey:type"
4450
+ },
4451
+ {
4452
+ "kind": "Content",
4453
+ "text": ";"
4454
+ }
4455
+ ],
4456
+ "isReadonly": false,
4457
+ "isOptional": true,
4458
+ "releaseTag": "Public",
4459
+ "name": "refkey",
4460
+ "propertyTypeTokenRange": {
4461
+ "startIndex": 1,
4462
+ "endIndex": 2
4463
+ }
4464
+ },
4465
+ {
4466
+ "kind": "PropertySignature",
4467
+ "canonicalReference": "@alloy-js/csharp!InterfaceDeclarationProps#typeParameters:member",
4468
+ "docComment": "",
4469
+ "excerptTokens": [
4470
+ {
4471
+ "kind": "Content",
4472
+ "text": "typeParameters?: "
4473
+ },
4474
+ {
4475
+ "kind": "Reference",
4476
+ "text": "Record",
4477
+ "canonicalReference": "!Record:type"
4478
+ },
4479
+ {
4480
+ "kind": "Content",
4481
+ "text": "<string, "
4482
+ },
4483
+ {
4484
+ "kind": "Reference",
4485
+ "text": "core.Refkey",
4486
+ "canonicalReference": "@alloy-js/core!Refkey:type"
4487
+ },
4488
+ {
4489
+ "kind": "Content",
4490
+ "text": ">"
4491
+ },
4492
+ {
4493
+ "kind": "Content",
4494
+ "text": ";"
4495
+ }
4496
+ ],
4497
+ "isReadonly": false,
4498
+ "isOptional": true,
4499
+ "releaseTag": "Public",
4500
+ "name": "typeParameters",
4501
+ "propertyTypeTokenRange": {
4502
+ "startIndex": 1,
4503
+ "endIndex": 5
4504
+ }
4505
+ }
4506
+ ],
4507
+ "extendsTokenRanges": [
4508
+ {
4509
+ "startIndex": 1,
4510
+ "endIndex": 5
4511
+ },
4512
+ {
4513
+ "startIndex": 6,
4514
+ "endIndex": 7
4515
+ },
4516
+ {
4517
+ "startIndex": 8,
4518
+ "endIndex": 9
4519
+ }
4520
+ ]
4521
+ },
4522
+ {
4523
+ "kind": "Function",
4524
+ "canonicalReference": "@alloy-js/csharp!InterfaceMethod:function(1)",
4525
+ "docComment": "",
4526
+ "excerptTokens": [
4527
+ {
4528
+ "kind": "Content",
4529
+ "text": "export declare function InterfaceMethod(props: "
4530
+ },
4531
+ {
4532
+ "kind": "Reference",
4533
+ "text": "InterfaceMethodProps",
4534
+ "canonicalReference": "@alloy-js/csharp!InterfaceMethodProps:interface"
4535
+ },
4536
+ {
4537
+ "kind": "Content",
4538
+ "text": "): "
4539
+ },
4540
+ {
4541
+ "kind": "Reference",
4542
+ "text": "Children",
4543
+ "canonicalReference": "@alloy-js/core!Children:type"
4544
+ },
4545
+ {
4546
+ "kind": "Content",
4547
+ "text": ";"
4548
+ }
4549
+ ],
4550
+ "fileUrlPath": "src/components/interface/method.tsx",
4551
+ "returnTypeTokenRange": {
4552
+ "startIndex": 3,
4553
+ "endIndex": 4
4554
+ },
4555
+ "releaseTag": "Public",
4556
+ "overloadIndex": 1,
4557
+ "parameters": [
4558
+ {
4559
+ "parameterName": "props",
4560
+ "parameterTypeTokenRange": {
4561
+ "startIndex": 1,
4562
+ "endIndex": 2
4563
+ },
4564
+ "isOptional": false
4565
+ }
4566
+ ],
4567
+ "name": "InterfaceMethod"
4568
+ },
4569
+ {
4570
+ "kind": "Interface",
4571
+ "canonicalReference": "@alloy-js/csharp!InterfaceMethodModifiers:interface",
4572
+ "docComment": "/**\n * Method modifiers. Can only be one.\n */\n",
4573
+ "excerptTokens": [
4574
+ {
4575
+ "kind": "Content",
4576
+ "text": "export interface InterfaceMethodModifiers "
4577
+ }
4578
+ ],
4579
+ "fileUrlPath": "src/components/interface/method.tsx",
4580
+ "releaseTag": "Public",
4581
+ "name": "InterfaceMethodModifiers",
4582
+ "preserveMemberOrder": false,
4583
+ "members": [
1805
4584
  {
1806
4585
  "kind": "PropertySignature",
1807
- "canonicalReference": "@alloy-js/csharp!EnumMemberProps#refkey:member",
4586
+ "canonicalReference": "@alloy-js/csharp!InterfaceMethodModifiers#new:member",
1808
4587
  "docComment": "",
1809
4588
  "excerptTokens": [
1810
4589
  {
1811
4590
  "kind": "Content",
1812
- "text": "refkey?: "
4591
+ "text": "readonly new?: "
1813
4592
  },
1814
4593
  {
1815
- "kind": "Reference",
1816
- "text": "core.Refkey",
1817
- "canonicalReference": "@alloy-js/core!Refkey:type"
4594
+ "kind": "Content",
4595
+ "text": "boolean"
1818
4596
  },
1819
4597
  {
1820
4598
  "kind": "Content",
1821
4599
  "text": ";"
1822
4600
  }
1823
4601
  ],
1824
- "isReadonly": false,
4602
+ "isReadonly": true,
1825
4603
  "isOptional": true,
1826
4604
  "releaseTag": "Public",
1827
- "name": "refkey",
4605
+ "name": "new",
1828
4606
  "propertyTypeTokenRange": {
1829
4607
  "startIndex": 1,
1830
4608
  "endIndex": 2
@@ -1835,32 +4613,50 @@
1835
4613
  },
1836
4614
  {
1837
4615
  "kind": "Interface",
1838
- "canonicalReference": "@alloy-js/csharp!EnumProps:interface",
4616
+ "canonicalReference": "@alloy-js/csharp!InterfaceMethodProps:interface",
1839
4617
  "docComment": "",
1840
4618
  "excerptTokens": [
1841
4619
  {
1842
4620
  "kind": "Content",
1843
- "text": "export interface EnumProps "
4621
+ "text": "export interface InterfaceMethodProps extends "
4622
+ },
4623
+ {
4624
+ "kind": "Reference",
4625
+ "text": "AccessModifiers",
4626
+ "canonicalReference": "@alloy-js/csharp!AccessModifiers:interface"
4627
+ },
4628
+ {
4629
+ "kind": "Content",
4630
+ "text": ", "
4631
+ },
4632
+ {
4633
+ "kind": "Reference",
4634
+ "text": "InterfaceMethodModifiers",
4635
+ "canonicalReference": "@alloy-js/csharp!InterfaceMethodModifiers:interface"
4636
+ },
4637
+ {
4638
+ "kind": "Content",
4639
+ "text": " "
1844
4640
  }
1845
4641
  ],
1846
- "fileUrlPath": "src/components/Enum.tsx",
4642
+ "fileUrlPath": "src/components/interface/method.tsx",
1847
4643
  "releaseTag": "Public",
1848
- "name": "EnumProps",
4644
+ "name": "InterfaceMethodProps",
1849
4645
  "preserveMemberOrder": false,
1850
4646
  "members": [
1851
4647
  {
1852
4648
  "kind": "PropertySignature",
1853
- "canonicalReference": "@alloy-js/csharp!EnumProps#accessModifier:member",
4649
+ "canonicalReference": "@alloy-js/csharp!InterfaceMethodProps#children:member",
1854
4650
  "docComment": "",
1855
4651
  "excerptTokens": [
1856
4652
  {
1857
4653
  "kind": "Content",
1858
- "text": "accessModifier?: "
4654
+ "text": "children?: "
1859
4655
  },
1860
4656
  {
1861
4657
  "kind": "Reference",
1862
- "text": "AccessModifier",
1863
- "canonicalReference": "@alloy-js/csharp!AccessModifier:type"
4658
+ "text": "Children",
4659
+ "canonicalReference": "@alloy-js/core!Children:type"
1864
4660
  },
1865
4661
  {
1866
4662
  "kind": "Content",
@@ -1870,7 +4666,7 @@
1870
4666
  "isReadonly": false,
1871
4667
  "isOptional": true,
1872
4668
  "releaseTag": "Public",
1873
- "name": "accessModifier",
4669
+ "name": "children",
1874
4670
  "propertyTypeTokenRange": {
1875
4671
  "startIndex": 1,
1876
4672
  "endIndex": 2
@@ -1878,16 +4674,16 @@
1878
4674
  },
1879
4675
  {
1880
4676
  "kind": "PropertySignature",
1881
- "canonicalReference": "@alloy-js/csharp!EnumProps#children:member",
1882
- "docComment": "",
4677
+ "canonicalReference": "@alloy-js/csharp!InterfaceMethodProps#doc:member",
4678
+ "docComment": "/**\n * Doc comment\n */\n",
1883
4679
  "excerptTokens": [
1884
4680
  {
1885
4681
  "kind": "Content",
1886
- "text": "children?: "
4682
+ "text": "doc?: "
1887
4683
  },
1888
4684
  {
1889
4685
  "kind": "Reference",
1890
- "text": "core.Children",
4686
+ "text": "Children",
1891
4687
  "canonicalReference": "@alloy-js/core!Children:type"
1892
4688
  },
1893
4689
  {
@@ -1898,7 +4694,7 @@
1898
4694
  "isReadonly": false,
1899
4695
  "isOptional": true,
1900
4696
  "releaseTag": "Public",
1901
- "name": "children",
4697
+ "name": "doc",
1902
4698
  "propertyTypeTokenRange": {
1903
4699
  "startIndex": 1,
1904
4700
  "endIndex": 2
@@ -1906,7 +4702,7 @@
1906
4702
  },
1907
4703
  {
1908
4704
  "kind": "PropertySignature",
1909
- "canonicalReference": "@alloy-js/csharp!EnumProps#name:member",
4705
+ "canonicalReference": "@alloy-js/csharp!InterfaceMethodProps#name:member",
1910
4706
  "docComment": "",
1911
4707
  "excerptTokens": [
1912
4708
  {
@@ -1933,7 +4729,48 @@
1933
4729
  },
1934
4730
  {
1935
4731
  "kind": "PropertySignature",
1936
- "canonicalReference": "@alloy-js/csharp!EnumProps#refkey:member",
4732
+ "canonicalReference": "@alloy-js/csharp!InterfaceMethodProps#parameters:member",
4733
+ "docComment": "",
4734
+ "excerptTokens": [
4735
+ {
4736
+ "kind": "Content",
4737
+ "text": "parameters?: "
4738
+ },
4739
+ {
4740
+ "kind": "Reference",
4741
+ "text": "Array",
4742
+ "canonicalReference": "!Array:interface"
4743
+ },
4744
+ {
4745
+ "kind": "Content",
4746
+ "text": "<"
4747
+ },
4748
+ {
4749
+ "kind": "Reference",
4750
+ "text": "ParameterProps",
4751
+ "canonicalReference": "@alloy-js/csharp!ParameterProps:interface"
4752
+ },
4753
+ {
4754
+ "kind": "Content",
4755
+ "text": ">"
4756
+ },
4757
+ {
4758
+ "kind": "Content",
4759
+ "text": ";"
4760
+ }
4761
+ ],
4762
+ "isReadonly": false,
4763
+ "isOptional": true,
4764
+ "releaseTag": "Public",
4765
+ "name": "parameters",
4766
+ "propertyTypeTokenRange": {
4767
+ "startIndex": 1,
4768
+ "endIndex": 5
4769
+ }
4770
+ },
4771
+ {
4772
+ "kind": "PropertySignature",
4773
+ "canonicalReference": "@alloy-js/csharp!InterfaceMethodProps#refkey:member",
1937
4774
  "docComment": "",
1938
4775
  "excerptTokens": [
1939
4776
  {
@@ -1942,7 +4779,7 @@
1942
4779
  },
1943
4780
  {
1944
4781
  "kind": "Reference",
1945
- "text": "core.Refkey",
4782
+ "text": "Refkey",
1946
4783
  "canonicalReference": "@alloy-js/core!Refkey:type"
1947
4784
  },
1948
4785
  {
@@ -1958,23 +4795,104 @@
1958
4795
  "startIndex": 1,
1959
4796
  "endIndex": 2
1960
4797
  }
4798
+ },
4799
+ {
4800
+ "kind": "PropertySignature",
4801
+ "canonicalReference": "@alloy-js/csharp!InterfaceMethodProps#returns:member",
4802
+ "docComment": "",
4803
+ "excerptTokens": [
4804
+ {
4805
+ "kind": "Content",
4806
+ "text": "returns?: "
4807
+ },
4808
+ {
4809
+ "kind": "Reference",
4810
+ "text": "Children",
4811
+ "canonicalReference": "@alloy-js/core!Children:type"
4812
+ },
4813
+ {
4814
+ "kind": "Content",
4815
+ "text": ";"
4816
+ }
4817
+ ],
4818
+ "isReadonly": false,
4819
+ "isOptional": true,
4820
+ "releaseTag": "Public",
4821
+ "name": "returns",
4822
+ "propertyTypeTokenRange": {
4823
+ "startIndex": 1,
4824
+ "endIndex": 2
4825
+ }
4826
+ }
4827
+ ],
4828
+ "extendsTokenRanges": [
4829
+ {
4830
+ "startIndex": 1,
4831
+ "endIndex": 2
4832
+ },
4833
+ {
4834
+ "startIndex": 3,
4835
+ "endIndex": 4
4836
+ }
4837
+ ]
4838
+ },
4839
+ {
4840
+ "kind": "Interface",
4841
+ "canonicalReference": "@alloy-js/csharp!InterfaceModifiers:interface",
4842
+ "docComment": "",
4843
+ "excerptTokens": [
4844
+ {
4845
+ "kind": "Content",
4846
+ "text": "export interface InterfaceModifiers "
4847
+ }
4848
+ ],
4849
+ "fileUrlPath": "src/components/interface/declaration.tsx",
4850
+ "releaseTag": "Public",
4851
+ "name": "InterfaceModifiers",
4852
+ "preserveMemberOrder": false,
4853
+ "members": [
4854
+ {
4855
+ "kind": "PropertySignature",
4856
+ "canonicalReference": "@alloy-js/csharp!InterfaceModifiers#partial:member",
4857
+ "docComment": "",
4858
+ "excerptTokens": [
4859
+ {
4860
+ "kind": "Content",
4861
+ "text": "readonly partial?: "
4862
+ },
4863
+ {
4864
+ "kind": "Content",
4865
+ "text": "boolean"
4866
+ },
4867
+ {
4868
+ "kind": "Content",
4869
+ "text": ";"
4870
+ }
4871
+ ],
4872
+ "isReadonly": true,
4873
+ "isOptional": true,
4874
+ "releaseTag": "Public",
4875
+ "name": "partial",
4876
+ "propertyTypeTokenRange": {
4877
+ "startIndex": 1,
4878
+ "endIndex": 2
4879
+ }
1961
4880
  }
1962
4881
  ],
1963
4882
  "extendsTokenRanges": []
1964
4883
  },
1965
4884
  {
1966
4885
  "kind": "Function",
1967
- "canonicalReference": "@alloy-js/csharp!getAccessModifier:function(1)",
4886
+ "canonicalReference": "@alloy-js/csharp!makeDocCommentTag:function(1)",
1968
4887
  "docComment": "",
1969
4888
  "excerptTokens": [
1970
4889
  {
1971
4890
  "kind": "Content",
1972
- "text": "export declare function getAccessModifier(accessModifier?: "
4891
+ "text": "export declare function makeDocCommentTag(name: "
1973
4892
  },
1974
4893
  {
1975
- "kind": "Reference",
1976
- "text": "AccessModifier",
1977
- "canonicalReference": "@alloy-js/csharp!AccessModifier:type"
4894
+ "kind": "Content",
4895
+ "text": "string"
1978
4896
  },
1979
4897
  {
1980
4898
  "kind": "Content",
@@ -1982,45 +4900,58 @@
1982
4900
  },
1983
4901
  {
1984
4902
  "kind": "Content",
1985
- "text": "string"
4903
+ "text": "(props: "
4904
+ },
4905
+ {
4906
+ "kind": "Reference",
4907
+ "text": "DocCommentProps",
4908
+ "canonicalReference": "@alloy-js/csharp!DocCommentProps:interface"
4909
+ },
4910
+ {
4911
+ "kind": "Content",
4912
+ "text": ") => "
4913
+ },
4914
+ {
4915
+ "kind": "Reference",
4916
+ "text": "Children",
4917
+ "canonicalReference": "@alloy-js/core!Children:type"
1986
4918
  },
1987
4919
  {
1988
4920
  "kind": "Content",
1989
4921
  "text": ";"
1990
4922
  }
1991
4923
  ],
1992
- "fileUrlPath": "src/modifiers.ts",
4924
+ "fileUrlPath": "src/components/doc/comment.tsx",
1993
4925
  "returnTypeTokenRange": {
1994
4926
  "startIndex": 3,
1995
- "endIndex": 4
4927
+ "endIndex": 7
1996
4928
  },
1997
4929
  "releaseTag": "Public",
1998
4930
  "overloadIndex": 1,
1999
4931
  "parameters": [
2000
4932
  {
2001
- "parameterName": "accessModifier",
4933
+ "parameterName": "name",
2002
4934
  "parameterTypeTokenRange": {
2003
4935
  "startIndex": 1,
2004
4936
  "endIndex": 2
2005
4937
  },
2006
- "isOptional": true
4938
+ "isOptional": false
2007
4939
  }
2008
4940
  ],
2009
- "name": "getAccessModifier"
4941
+ "name": "makeDocCommentTag"
2010
4942
  },
2011
4943
  {
2012
4944
  "kind": "Function",
2013
- "canonicalReference": "@alloy-js/csharp!getMethodModifier:function(1)",
4945
+ "canonicalReference": "@alloy-js/csharp!makeInlineDocCommentTag:function(1)",
2014
4946
  "docComment": "",
2015
4947
  "excerptTokens": [
2016
4948
  {
2017
4949
  "kind": "Content",
2018
- "text": "export declare function getMethodModifier(methodModifier?: "
4950
+ "text": "export declare function makeInlineDocCommentTag(name: "
2019
4951
  },
2020
4952
  {
2021
- "kind": "Reference",
2022
- "text": "MethodModifier",
2023
- "canonicalReference": "@alloy-js/csharp!MethodModifier:type"
4953
+ "kind": "Content",
4954
+ "text": "string"
2024
4955
  },
2025
4956
  {
2026
4957
  "kind": "Content",
@@ -2028,44 +4959,66 @@
2028
4959
  },
2029
4960
  {
2030
4961
  "kind": "Content",
2031
- "text": "string"
4962
+ "text": "(props: "
4963
+ },
4964
+ {
4965
+ "kind": "Reference",
4966
+ "text": "DocCommentProps",
4967
+ "canonicalReference": "@alloy-js/csharp!DocCommentProps:interface"
4968
+ },
4969
+ {
4970
+ "kind": "Content",
4971
+ "text": ") => string"
2032
4972
  },
2033
4973
  {
2034
4974
  "kind": "Content",
2035
4975
  "text": ";"
2036
4976
  }
2037
4977
  ],
2038
- "fileUrlPath": "src/modifiers.ts",
4978
+ "fileUrlPath": "src/components/doc/comment.tsx",
2039
4979
  "returnTypeTokenRange": {
2040
4980
  "startIndex": 3,
2041
- "endIndex": 4
4981
+ "endIndex": 6
2042
4982
  },
2043
4983
  "releaseTag": "Public",
2044
4984
  "overloadIndex": 1,
2045
4985
  "parameters": [
2046
4986
  {
2047
- "parameterName": "methodModifier",
4987
+ "parameterName": "name",
2048
4988
  "parameterTypeTokenRange": {
2049
4989
  "startIndex": 1,
2050
4990
  "endIndex": 2
2051
4991
  },
2052
- "isOptional": true
4992
+ "isOptional": false
2053
4993
  }
2054
4994
  ],
2055
- "name": "getMethodModifier"
4995
+ "name": "makeInlineDocCommentTag"
2056
4996
  },
2057
4997
  {
2058
- "kind": "TypeAlias",
2059
- "canonicalReference": "@alloy-js/csharp!MethodModifier:type",
4998
+ "kind": "Function",
4999
+ "canonicalReference": "@alloy-js/csharp!makeModifiers:function(1)",
2060
5000
  "docComment": "",
2061
5001
  "excerptTokens": [
2062
5002
  {
2063
5003
  "kind": "Content",
2064
- "text": "export type MethodModifier = "
5004
+ "text": "export declare function makeModifiers<T>(obj: "
5005
+ },
5006
+ {
5007
+ "kind": "Reference",
5008
+ "text": "Array",
5009
+ "canonicalReference": "!Array:interface"
5010
+ },
5011
+ {
5012
+ "kind": "Content",
5013
+ "text": "<keyof T>"
5014
+ },
5015
+ {
5016
+ "kind": "Content",
5017
+ "text": "): "
2065
5018
  },
2066
5019
  {
2067
5020
  "kind": "Content",
2068
- "text": "\"abstract\" | \"sealed\" | \"static\" | \"virtual\""
5021
+ "text": "(data: T) => string"
2069
5022
  },
2070
5023
  {
2071
5024
  "kind": "Content",
@@ -2073,12 +5026,36 @@
2073
5026
  }
2074
5027
  ],
2075
5028
  "fileUrlPath": "src/modifiers.ts",
5029
+ "returnTypeTokenRange": {
5030
+ "startIndex": 4,
5031
+ "endIndex": 5
5032
+ },
2076
5033
  "releaseTag": "Public",
2077
- "name": "MethodModifier",
2078
- "typeTokenRange": {
2079
- "startIndex": 1,
2080
- "endIndex": 2
2081
- }
5034
+ "overloadIndex": 1,
5035
+ "parameters": [
5036
+ {
5037
+ "parameterName": "obj",
5038
+ "parameterTypeTokenRange": {
5039
+ "startIndex": 1,
5040
+ "endIndex": 3
5041
+ },
5042
+ "isOptional": false
5043
+ }
5044
+ ],
5045
+ "typeParameters": [
5046
+ {
5047
+ "typeParameterName": "T",
5048
+ "constraintTokenRange": {
5049
+ "startIndex": 0,
5050
+ "endIndex": 0
5051
+ },
5052
+ "defaultTypeTokenRange": {
5053
+ "startIndex": 0,
5054
+ "endIndex": 0
5055
+ }
5056
+ }
5057
+ ],
5058
+ "name": "makeModifiers"
2082
5059
  },
2083
5060
  {
2084
5061
  "kind": "Function",