@alloy-js/csharp 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (125) hide show
  1. package/LICENSE.txt +7 -0
  2. package/api-extractor.json +4 -0
  3. package/babel.config.cjs +4 -0
  4. package/dist/src/components/Class.d.ts +33 -0
  5. package/dist/src/components/Class.d.ts.map +1 -0
  6. package/dist/src/components/Class.js +170 -0
  7. package/dist/src/components/Class.js.map +1 -0
  8. package/dist/src/components/Declaration.d.ts +8 -0
  9. package/dist/src/components/Declaration.d.ts.map +1 -0
  10. package/dist/src/components/Declaration.js +18 -0
  11. package/dist/src/components/Declaration.js.map +1 -0
  12. package/dist/src/components/Enum.d.ts +13 -0
  13. package/dist/src/components/Enum.d.ts.map +1 -0
  14. package/dist/src/components/Enum.js +65 -0
  15. package/dist/src/components/Enum.js.map +1 -0
  16. package/dist/src/components/Name.d.ts +2 -0
  17. package/dist/src/components/Name.d.ts.map +1 -0
  18. package/dist/src/components/Name.js +12 -0
  19. package/dist/src/components/Name.js.map +1 -0
  20. package/dist/src/components/Namespace.d.ts +11 -0
  21. package/dist/src/components/Namespace.d.ts.map +1 -0
  22. package/dist/src/components/Namespace.js +35 -0
  23. package/dist/src/components/Namespace.js.map +1 -0
  24. package/dist/src/components/Parameters.d.ts +13 -0
  25. package/dist/src/components/Parameters.d.ts.map +1 -0
  26. package/dist/src/components/Parameters.js +34 -0
  27. package/dist/src/components/Parameters.js.map +1 -0
  28. package/dist/src/components/ProjectDirectory.d.ts +12 -0
  29. package/dist/src/components/ProjectDirectory.d.ts.map +1 -0
  30. package/dist/src/components/ProjectDirectory.js +48 -0
  31. package/dist/src/components/ProjectDirectory.js.map +1 -0
  32. package/dist/src/components/Reference.d.ts +6 -0
  33. package/dist/src/components/Reference.d.ts.map +1 -0
  34. package/dist/src/components/Reference.js +9 -0
  35. package/dist/src/components/Reference.js.map +1 -0
  36. package/dist/src/components/SourceFile.d.ts +12 -0
  37. package/dist/src/components/SourceFile.d.ts.map +1 -0
  38. package/dist/src/components/SourceFile.js +72 -0
  39. package/dist/src/components/SourceFile.js.map +1 -0
  40. package/dist/src/components/UsingDirective.d.ts +5 -0
  41. package/dist/src/components/UsingDirective.d.ts.map +1 -0
  42. package/dist/src/components/UsingDirective.js +13 -0
  43. package/dist/src/components/UsingDirective.js.map +1 -0
  44. package/dist/src/components/index.d.ts +11 -0
  45. package/dist/src/components/index.d.ts.map +1 -0
  46. package/dist/src/components/index.js +11 -0
  47. package/dist/src/components/index.js.map +1 -0
  48. package/dist/src/components/stc/index.d.ts +43 -0
  49. package/dist/src/components/stc/index.d.ts.map +1 -0
  50. package/dist/src/components/stc/index.js +13 -0
  51. package/dist/src/components/stc/index.js.map +1 -0
  52. package/dist/src/index.d.ts +5 -0
  53. package/dist/src/index.d.ts.map +1 -0
  54. package/dist/src/index.js +5 -0
  55. package/dist/src/index.js.map +1 -0
  56. package/dist/src/modifiers.d.ts +5 -0
  57. package/dist/src/modifiers.d.ts.map +1 -0
  58. package/dist/src/modifiers.js +35 -0
  59. package/dist/src/modifiers.js.map +1 -0
  60. package/dist/src/name-policy.d.ts +5 -0
  61. package/dist/src/name-policy.d.ts.map +1 -0
  62. package/dist/src/name-policy.js +30 -0
  63. package/dist/src/name-policy.js.map +1 -0
  64. package/dist/src/symbols/csharp-output-symbol.d.ts +7 -0
  65. package/dist/src/symbols/csharp-output-symbol.d.ts.map +1 -0
  66. package/dist/src/symbols/csharp-output-symbol.js +20 -0
  67. package/dist/src/symbols/csharp-output-symbol.js.map +1 -0
  68. package/dist/src/symbols/index.d.ts +4 -0
  69. package/dist/src/symbols/index.d.ts.map +1 -0
  70. package/dist/src/symbols/index.js +4 -0
  71. package/dist/src/symbols/index.js.map +1 -0
  72. package/dist/src/symbols/reference.d.ts +3 -0
  73. package/dist/src/symbols/reference.d.ts.map +1 -0
  74. package/dist/src/symbols/reference.js +55 -0
  75. package/dist/src/symbols/reference.js.map +1 -0
  76. package/dist/src/symbols/scopes.d.ts +16 -0
  77. package/dist/src/symbols/scopes.d.ts.map +1 -0
  78. package/dist/src/symbols/scopes.js +37 -0
  79. package/dist/src/symbols/scopes.js.map +1 -0
  80. package/dist/test/class.test.d.ts +2 -0
  81. package/dist/test/class.test.d.ts.map +1 -0
  82. package/dist/test/enum.test.d.ts +2 -0
  83. package/dist/test/enum.test.d.ts.map +1 -0
  84. package/dist/test/namespace.test.d.ts +2 -0
  85. package/dist/test/namespace.test.d.ts.map +1 -0
  86. package/dist/test/projectdirectory.test.d.ts +2 -0
  87. package/dist/test/projectdirectory.test.d.ts.map +1 -0
  88. package/dist/test/sourcefile.test.d.ts +2 -0
  89. package/dist/test/sourcefile.test.d.ts.map +1 -0
  90. package/dist/test/using.test.d.ts +2 -0
  91. package/dist/test/using.test.d.ts.map +1 -0
  92. package/dist/test/utils.d.ts +6 -0
  93. package/dist/test/utils.d.ts.map +1 -0
  94. package/dist/tsconfig.tsbuildinfo +1 -0
  95. package/package.json +51 -0
  96. package/src/components/Class.tsx +210 -0
  97. package/src/components/Declaration.tsx +17 -0
  98. package/src/components/Enum.tsx +74 -0
  99. package/src/components/Name.tsx +11 -0
  100. package/src/components/Namespace.tsx +39 -0
  101. package/src/components/Parameters.tsx +52 -0
  102. package/src/components/ProjectDirectory.tsx +54 -0
  103. package/src/components/Reference.tsx +13 -0
  104. package/src/components/SourceFile.tsx +69 -0
  105. package/src/components/UsingDirective.tsx +19 -0
  106. package/src/components/index.ts +10 -0
  107. package/src/components/stc/index.ts +13 -0
  108. package/src/index.ts +4 -0
  109. package/src/modifiers.ts +45 -0
  110. package/src/name-policy.ts +41 -0
  111. package/src/symbols/csharp-output-symbol.ts +26 -0
  112. package/src/symbols/index.ts +3 -0
  113. package/src/symbols/reference.ts +65 -0
  114. package/src/symbols/scopes.ts +60 -0
  115. package/temp/api.json +3474 -0
  116. package/test/class.test.tsx +249 -0
  117. package/test/enum.test.tsx +147 -0
  118. package/test/namespace.test.tsx +59 -0
  119. package/test/projectdirectory.test.tsx +106 -0
  120. package/test/sourcefile.test.tsx +46 -0
  121. package/test/using.test.tsx +97 -0
  122. package/test/utils.tsx +69 -0
  123. package/tsconfig.json +11 -0
  124. package/tsdoc-metadata.json +11 -0
  125. package/vitest.config.ts +18 -0
package/temp/api.json ADDED
@@ -0,0 +1,3474 @@
1
+ {
2
+ "metadata": {
3
+ "toolPackage": "@microsoft/api-extractor",
4
+ "toolVersion": "7.47.7",
5
+ "schemaVersion": 1011,
6
+ "oldestForwardsCompatibleVersion": 1001,
7
+ "tsdocConfig": {
8
+ "$schema": "https://developer.microsoft.com/json-schemas/tsdoc/v0/tsdoc.schema.json",
9
+ "noStandardTags": true,
10
+ "tagDefinitions": [
11
+ {
12
+ "tagName": "@alpha",
13
+ "syntaxKind": "modifier"
14
+ },
15
+ {
16
+ "tagName": "@beta",
17
+ "syntaxKind": "modifier"
18
+ },
19
+ {
20
+ "tagName": "@defaultValue",
21
+ "syntaxKind": "block"
22
+ },
23
+ {
24
+ "tagName": "@decorator",
25
+ "syntaxKind": "block",
26
+ "allowMultiple": true
27
+ },
28
+ {
29
+ "tagName": "@deprecated",
30
+ "syntaxKind": "block"
31
+ },
32
+ {
33
+ "tagName": "@eventProperty",
34
+ "syntaxKind": "modifier"
35
+ },
36
+ {
37
+ "tagName": "@example",
38
+ "syntaxKind": "block",
39
+ "allowMultiple": true
40
+ },
41
+ {
42
+ "tagName": "@experimental",
43
+ "syntaxKind": "modifier"
44
+ },
45
+ {
46
+ "tagName": "@inheritDoc",
47
+ "syntaxKind": "inline"
48
+ },
49
+ {
50
+ "tagName": "@internal",
51
+ "syntaxKind": "modifier"
52
+ },
53
+ {
54
+ "tagName": "@label",
55
+ "syntaxKind": "inline"
56
+ },
57
+ {
58
+ "tagName": "@link",
59
+ "syntaxKind": "inline",
60
+ "allowMultiple": true
61
+ },
62
+ {
63
+ "tagName": "@override",
64
+ "syntaxKind": "modifier"
65
+ },
66
+ {
67
+ "tagName": "@packageDocumentation",
68
+ "syntaxKind": "modifier"
69
+ },
70
+ {
71
+ "tagName": "@param",
72
+ "syntaxKind": "block",
73
+ "allowMultiple": true
74
+ },
75
+ {
76
+ "tagName": "@privateRemarks",
77
+ "syntaxKind": "block"
78
+ },
79
+ {
80
+ "tagName": "@public",
81
+ "syntaxKind": "modifier"
82
+ },
83
+ {
84
+ "tagName": "@readonly",
85
+ "syntaxKind": "modifier"
86
+ },
87
+ {
88
+ "tagName": "@remarks",
89
+ "syntaxKind": "block"
90
+ },
91
+ {
92
+ "tagName": "@returns",
93
+ "syntaxKind": "block"
94
+ },
95
+ {
96
+ "tagName": "@sealed",
97
+ "syntaxKind": "modifier"
98
+ },
99
+ {
100
+ "tagName": "@see",
101
+ "syntaxKind": "block"
102
+ },
103
+ {
104
+ "tagName": "@throws",
105
+ "syntaxKind": "block",
106
+ "allowMultiple": true
107
+ },
108
+ {
109
+ "tagName": "@typeParam",
110
+ "syntaxKind": "block",
111
+ "allowMultiple": true
112
+ },
113
+ {
114
+ "tagName": "@virtual",
115
+ "syntaxKind": "modifier"
116
+ },
117
+ {
118
+ "tagName": "@betaDocumentation",
119
+ "syntaxKind": "modifier"
120
+ },
121
+ {
122
+ "tagName": "@internalRemarks",
123
+ "syntaxKind": "block"
124
+ },
125
+ {
126
+ "tagName": "@preapproved",
127
+ "syntaxKind": "modifier"
128
+ }
129
+ ],
130
+ "supportForTags": {
131
+ "@alpha": true,
132
+ "@beta": true,
133
+ "@defaultValue": true,
134
+ "@decorator": true,
135
+ "@deprecated": true,
136
+ "@eventProperty": true,
137
+ "@example": true,
138
+ "@experimental": true,
139
+ "@inheritDoc": true,
140
+ "@internal": true,
141
+ "@label": true,
142
+ "@link": true,
143
+ "@override": true,
144
+ "@packageDocumentation": true,
145
+ "@param": true,
146
+ "@privateRemarks": true,
147
+ "@public": true,
148
+ "@readonly": true,
149
+ "@remarks": true,
150
+ "@returns": true,
151
+ "@sealed": true,
152
+ "@see": true,
153
+ "@throws": true,
154
+ "@typeParam": true,
155
+ "@virtual": true,
156
+ "@betaDocumentation": true,
157
+ "@internalRemarks": true,
158
+ "@preapproved": true
159
+ },
160
+ "reportUnsupportedHtmlElements": false
161
+ }
162
+ },
163
+ "kind": "Package",
164
+ "canonicalReference": "@alloy-js/csharp!",
165
+ "docComment": "",
166
+ "name": "@alloy-js/csharp",
167
+ "preserveMemberOrder": false,
168
+ "members": [
169
+ {
170
+ "kind": "EntryPoint",
171
+ "canonicalReference": "@alloy-js/csharp!",
172
+ "name": "",
173
+ "preserveMemberOrder": false,
174
+ "members": [
175
+ {
176
+ "kind": "TypeAlias",
177
+ "canonicalReference": "@alloy-js/csharp!AccessModifier:type",
178
+ "docComment": "",
179
+ "excerptTokens": [
180
+ {
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": ";"
191
+ }
192
+ ],
193
+ "fileUrlPath": "src/modifiers.ts",
194
+ "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": [
206
+ {
207
+ "kind": "Content",
208
+ "text": "export declare function Class(props: "
209
+ },
210
+ {
211
+ "kind": "Reference",
212
+ "text": "ClassProps",
213
+ "canonicalReference": "@alloy-js/csharp!ClassProps:interface"
214
+ },
215
+ {
216
+ "kind": "Content",
217
+ "text": "): "
218
+ },
219
+ {
220
+ "kind": "Content",
221
+ "text": "any"
222
+ },
223
+ {
224
+ "kind": "Content",
225
+ "text": ";"
226
+ }
227
+ ],
228
+ "fileUrlPath": "src/components/Class.tsx",
229
+ "returnTypeTokenRange": {
230
+ "startIndex": 3,
231
+ "endIndex": 4
232
+ },
233
+ "releaseTag": "Public",
234
+ "overloadIndex": 1,
235
+ "parameters": [
236
+ {
237
+ "parameterName": "props",
238
+ "parameterTypeTokenRange": {
239
+ "startIndex": 1,
240
+ "endIndex": 2
241
+ },
242
+ "isOptional": false
243
+ }
244
+ ],
245
+ "name": "Class"
246
+ },
247
+ {
248
+ "kind": "Function",
249
+ "canonicalReference": "@alloy-js/csharp!ClassConstructor:function(1)",
250
+ "docComment": "",
251
+ "excerptTokens": [
252
+ {
253
+ "kind": "Content",
254
+ "text": "export declare function ClassConstructor(props: "
255
+ },
256
+ {
257
+ "kind": "Reference",
258
+ "text": "ClassConstructorProps",
259
+ "canonicalReference": "@alloy-js/csharp!ClassConstructorProps:interface"
260
+ },
261
+ {
262
+ "kind": "Content",
263
+ "text": "): "
264
+ },
265
+ {
266
+ "kind": "Content",
267
+ "text": "any"
268
+ },
269
+ {
270
+ "kind": "Content",
271
+ "text": ";"
272
+ }
273
+ ],
274
+ "fileUrlPath": "src/components/Class.tsx",
275
+ "returnTypeTokenRange": {
276
+ "startIndex": 3,
277
+ "endIndex": 4
278
+ },
279
+ "releaseTag": "Public",
280
+ "overloadIndex": 1,
281
+ "parameters": [
282
+ {
283
+ "parameterName": "props",
284
+ "parameterTypeTokenRange": {
285
+ "startIndex": 1,
286
+ "endIndex": 2
287
+ },
288
+ "isOptional": false
289
+ }
290
+ ],
291
+ "name": "ClassConstructor"
292
+ },
293
+ {
294
+ "kind": "Interface",
295
+ "canonicalReference": "@alloy-js/csharp!ClassConstructorProps:interface",
296
+ "docComment": "",
297
+ "excerptTokens": [
298
+ {
299
+ "kind": "Content",
300
+ "text": "export interface ClassConstructorProps "
301
+ }
302
+ ],
303
+ "fileUrlPath": "src/components/Class.tsx",
304
+ "releaseTag": "Public",
305
+ "name": "ClassConstructorProps",
306
+ "preserveMemberOrder": false,
307
+ "members": [
308
+ {
309
+ "kind": "PropertySignature",
310
+ "canonicalReference": "@alloy-js/csharp!ClassConstructorProps#accessModifier:member",
311
+ "docComment": "",
312
+ "excerptTokens": [
313
+ {
314
+ "kind": "Content",
315
+ "text": "accessModifier?: "
316
+ },
317
+ {
318
+ "kind": "Reference",
319
+ "text": "AccessModifier",
320
+ "canonicalReference": "@alloy-js/csharp!AccessModifier:type"
321
+ },
322
+ {
323
+ "kind": "Content",
324
+ "text": ";"
325
+ }
326
+ ],
327
+ "isReadonly": false,
328
+ "isOptional": true,
329
+ "releaseTag": "Public",
330
+ "name": "accessModifier",
331
+ "propertyTypeTokenRange": {
332
+ "startIndex": 1,
333
+ "endIndex": 2
334
+ }
335
+ },
336
+ {
337
+ "kind": "PropertySignature",
338
+ "canonicalReference": "@alloy-js/csharp!ClassConstructorProps#children:member",
339
+ "docComment": "",
340
+ "excerptTokens": [
341
+ {
342
+ "kind": "Content",
343
+ "text": "children?: "
344
+ },
345
+ {
346
+ "kind": "Reference",
347
+ "text": "core.Children",
348
+ "canonicalReference": "@alloy-js/core!Children:type"
349
+ },
350
+ {
351
+ "kind": "Content",
352
+ "text": ";"
353
+ }
354
+ ],
355
+ "isReadonly": false,
356
+ "isOptional": true,
357
+ "releaseTag": "Public",
358
+ "name": "children",
359
+ "propertyTypeTokenRange": {
360
+ "startIndex": 1,
361
+ "endIndex": 2
362
+ }
363
+ },
364
+ {
365
+ "kind": "PropertySignature",
366
+ "canonicalReference": "@alloy-js/csharp!ClassConstructorProps#parameters:member",
367
+ "docComment": "",
368
+ "excerptTokens": [
369
+ {
370
+ "kind": "Content",
371
+ "text": "parameters?: "
372
+ },
373
+ {
374
+ "kind": "Reference",
375
+ "text": "Array",
376
+ "canonicalReference": "!Array:interface"
377
+ },
378
+ {
379
+ "kind": "Content",
380
+ "text": "<"
381
+ },
382
+ {
383
+ "kind": "Reference",
384
+ "text": "ParameterProps",
385
+ "canonicalReference": "@alloy-js/csharp!ParameterProps:interface"
386
+ },
387
+ {
388
+ "kind": "Content",
389
+ "text": ">"
390
+ },
391
+ {
392
+ "kind": "Content",
393
+ "text": ";"
394
+ }
395
+ ],
396
+ "isReadonly": false,
397
+ "isOptional": true,
398
+ "releaseTag": "Public",
399
+ "name": "parameters",
400
+ "propertyTypeTokenRange": {
401
+ "startIndex": 1,
402
+ "endIndex": 5
403
+ }
404
+ },
405
+ {
406
+ "kind": "PropertySignature",
407
+ "canonicalReference": "@alloy-js/csharp!ClassConstructorProps#refkey:member",
408
+ "docComment": "",
409
+ "excerptTokens": [
410
+ {
411
+ "kind": "Content",
412
+ "text": "refkey?: "
413
+ },
414
+ {
415
+ "kind": "Reference",
416
+ "text": "core.Refkey",
417
+ "canonicalReference": "@alloy-js/core!Refkey:type"
418
+ },
419
+ {
420
+ "kind": "Content",
421
+ "text": ";"
422
+ }
423
+ ],
424
+ "isReadonly": false,
425
+ "isOptional": true,
426
+ "releaseTag": "Public",
427
+ "name": "refkey",
428
+ "propertyTypeTokenRange": {
429
+ "startIndex": 1,
430
+ "endIndex": 2
431
+ }
432
+ },
433
+ {
434
+ "kind": "PropertySignature",
435
+ "canonicalReference": "@alloy-js/csharp!ClassConstructorProps#symbol:member",
436
+ "docComment": "",
437
+ "excerptTokens": [
438
+ {
439
+ "kind": "Content",
440
+ "text": "symbol?: "
441
+ },
442
+ {
443
+ "kind": "Reference",
444
+ "text": "core.OutputSymbol",
445
+ "canonicalReference": "@alloy-js/core!OutputSymbol:interface"
446
+ },
447
+ {
448
+ "kind": "Content",
449
+ "text": ";"
450
+ }
451
+ ],
452
+ "isReadonly": false,
453
+ "isOptional": true,
454
+ "releaseTag": "Public",
455
+ "name": "symbol",
456
+ "propertyTypeTokenRange": {
457
+ "startIndex": 1,
458
+ "endIndex": 2
459
+ }
460
+ }
461
+ ],
462
+ "extendsTokenRanges": []
463
+ },
464
+ {
465
+ "kind": "Function",
466
+ "canonicalReference": "@alloy-js/csharp!ClassMember:function(1)",
467
+ "docComment": "",
468
+ "excerptTokens": [
469
+ {
470
+ "kind": "Content",
471
+ "text": "export declare function ClassMember(props: "
472
+ },
473
+ {
474
+ "kind": "Reference",
475
+ "text": "ClassMemberProps",
476
+ "canonicalReference": "@alloy-js/csharp!ClassMemberProps:interface"
477
+ },
478
+ {
479
+ "kind": "Content",
480
+ "text": "): "
481
+ },
482
+ {
483
+ "kind": "Content",
484
+ "text": "any"
485
+ },
486
+ {
487
+ "kind": "Content",
488
+ "text": ";"
489
+ }
490
+ ],
491
+ "fileUrlPath": "src/components/Class.tsx",
492
+ "returnTypeTokenRange": {
493
+ "startIndex": 3,
494
+ "endIndex": 4
495
+ },
496
+ "releaseTag": "Public",
497
+ "overloadIndex": 1,
498
+ "parameters": [
499
+ {
500
+ "parameterName": "props",
501
+ "parameterTypeTokenRange": {
502
+ "startIndex": 1,
503
+ "endIndex": 2
504
+ },
505
+ "isOptional": false
506
+ }
507
+ ],
508
+ "name": "ClassMember"
509
+ },
510
+ {
511
+ "kind": "Interface",
512
+ "canonicalReference": "@alloy-js/csharp!ClassMemberProps:interface",
513
+ "docComment": "",
514
+ "excerptTokens": [
515
+ {
516
+ "kind": "Content",
517
+ "text": "export interface ClassMemberProps "
518
+ }
519
+ ],
520
+ "fileUrlPath": "src/components/Class.tsx",
521
+ "releaseTag": "Public",
522
+ "name": "ClassMemberProps",
523
+ "preserveMemberOrder": false,
524
+ "members": [
525
+ {
526
+ "kind": "PropertySignature",
527
+ "canonicalReference": "@alloy-js/csharp!ClassMemberProps#accessModifier:member",
528
+ "docComment": "",
529
+ "excerptTokens": [
530
+ {
531
+ "kind": "Content",
532
+ "text": "accessModifier?: "
533
+ },
534
+ {
535
+ "kind": "Reference",
536
+ "text": "AccessModifier",
537
+ "canonicalReference": "@alloy-js/csharp!AccessModifier:type"
538
+ },
539
+ {
540
+ "kind": "Content",
541
+ "text": ";"
542
+ }
543
+ ],
544
+ "isReadonly": false,
545
+ "isOptional": true,
546
+ "releaseTag": "Public",
547
+ "name": "accessModifier",
548
+ "propertyTypeTokenRange": {
549
+ "startIndex": 1,
550
+ "endIndex": 2
551
+ }
552
+ },
553
+ {
554
+ "kind": "PropertySignature",
555
+ "canonicalReference": "@alloy-js/csharp!ClassMemberProps#name:member",
556
+ "docComment": "",
557
+ "excerptTokens": [
558
+ {
559
+ "kind": "Content",
560
+ "text": "name: "
561
+ },
562
+ {
563
+ "kind": "Content",
564
+ "text": "string"
565
+ },
566
+ {
567
+ "kind": "Content",
568
+ "text": ";"
569
+ }
570
+ ],
571
+ "isReadonly": false,
572
+ "isOptional": false,
573
+ "releaseTag": "Public",
574
+ "name": "name",
575
+ "propertyTypeTokenRange": {
576
+ "startIndex": 1,
577
+ "endIndex": 2
578
+ }
579
+ },
580
+ {
581
+ "kind": "PropertySignature",
582
+ "canonicalReference": "@alloy-js/csharp!ClassMemberProps#refkey:member",
583
+ "docComment": "",
584
+ "excerptTokens": [
585
+ {
586
+ "kind": "Content",
587
+ "text": "refkey?: "
588
+ },
589
+ {
590
+ "kind": "Reference",
591
+ "text": "core.Refkey",
592
+ "canonicalReference": "@alloy-js/core!Refkey:type"
593
+ },
594
+ {
595
+ "kind": "Content",
596
+ "text": ";"
597
+ }
598
+ ],
599
+ "isReadonly": false,
600
+ "isOptional": true,
601
+ "releaseTag": "Public",
602
+ "name": "refkey",
603
+ "propertyTypeTokenRange": {
604
+ "startIndex": 1,
605
+ "endIndex": 2
606
+ }
607
+ },
608
+ {
609
+ "kind": "PropertySignature",
610
+ "canonicalReference": "@alloy-js/csharp!ClassMemberProps#type:member",
611
+ "docComment": "",
612
+ "excerptTokens": [
613
+ {
614
+ "kind": "Content",
615
+ "text": "type: "
616
+ },
617
+ {
618
+ "kind": "Reference",
619
+ "text": "core.Children",
620
+ "canonicalReference": "@alloy-js/core!Children:type"
621
+ },
622
+ {
623
+ "kind": "Content",
624
+ "text": ";"
625
+ }
626
+ ],
627
+ "isReadonly": false,
628
+ "isOptional": false,
629
+ "releaseTag": "Public",
630
+ "name": "type",
631
+ "propertyTypeTokenRange": {
632
+ "startIndex": 1,
633
+ "endIndex": 2
634
+ }
635
+ }
636
+ ],
637
+ "extendsTokenRanges": []
638
+ },
639
+ {
640
+ "kind": "Function",
641
+ "canonicalReference": "@alloy-js/csharp!ClassMethod:function(1)",
642
+ "docComment": "",
643
+ "excerptTokens": [
644
+ {
645
+ "kind": "Content",
646
+ "text": "export declare function ClassMethod(props: "
647
+ },
648
+ {
649
+ "kind": "Reference",
650
+ "text": "ClassMethodProps",
651
+ "canonicalReference": "@alloy-js/csharp!ClassMethodProps:interface"
652
+ },
653
+ {
654
+ "kind": "Content",
655
+ "text": "): "
656
+ },
657
+ {
658
+ "kind": "Content",
659
+ "text": "any"
660
+ },
661
+ {
662
+ "kind": "Content",
663
+ "text": ";"
664
+ }
665
+ ],
666
+ "fileUrlPath": "src/components/Class.tsx",
667
+ "returnTypeTokenRange": {
668
+ "startIndex": 3,
669
+ "endIndex": 4
670
+ },
671
+ "releaseTag": "Public",
672
+ "overloadIndex": 1,
673
+ "parameters": [
674
+ {
675
+ "parameterName": "props",
676
+ "parameterTypeTokenRange": {
677
+ "startIndex": 1,
678
+ "endIndex": 2
679
+ },
680
+ "isOptional": false
681
+ }
682
+ ],
683
+ "name": "ClassMethod"
684
+ },
685
+ {
686
+ "kind": "Interface",
687
+ "canonicalReference": "@alloy-js/csharp!ClassMethodProps:interface",
688
+ "docComment": "",
689
+ "excerptTokens": [
690
+ {
691
+ "kind": "Content",
692
+ "text": "export interface ClassMethodProps extends "
693
+ },
694
+ {
695
+ "kind": "Reference",
696
+ "text": "Omit",
697
+ "canonicalReference": "!Omit:type"
698
+ },
699
+ {
700
+ "kind": "Content",
701
+ "text": "<"
702
+ },
703
+ {
704
+ "kind": "Reference",
705
+ "text": "core.DeclarationProps",
706
+ "canonicalReference": "@alloy-js/core!DeclarationProps:interface"
707
+ },
708
+ {
709
+ "kind": "Content",
710
+ "text": ", \"nameKind\">"
711
+ },
712
+ {
713
+ "kind": "Content",
714
+ "text": " "
715
+ }
716
+ ],
717
+ "fileUrlPath": "src/components/Class.tsx",
718
+ "releaseTag": "Public",
719
+ "name": "ClassMethodProps",
720
+ "preserveMemberOrder": false,
721
+ "members": [
722
+ {
723
+ "kind": "PropertySignature",
724
+ "canonicalReference": "@alloy-js/csharp!ClassMethodProps#accessModifier:member",
725
+ "docComment": "",
726
+ "excerptTokens": [
727
+ {
728
+ "kind": "Content",
729
+ "text": "accessModifier?: "
730
+ },
731
+ {
732
+ "kind": "Reference",
733
+ "text": "AccessModifier",
734
+ "canonicalReference": "@alloy-js/csharp!AccessModifier:type"
735
+ },
736
+ {
737
+ "kind": "Content",
738
+ "text": ";"
739
+ }
740
+ ],
741
+ "isReadonly": false,
742
+ "isOptional": true,
743
+ "releaseTag": "Public",
744
+ "name": "accessModifier",
745
+ "propertyTypeTokenRange": {
746
+ "startIndex": 1,
747
+ "endIndex": 2
748
+ }
749
+ },
750
+ {
751
+ "kind": "PropertySignature",
752
+ "canonicalReference": "@alloy-js/csharp!ClassMethodProps#methodModifier:member",
753
+ "docComment": "",
754
+ "excerptTokens": [
755
+ {
756
+ "kind": "Content",
757
+ "text": "methodModifier?: "
758
+ },
759
+ {
760
+ "kind": "Reference",
761
+ "text": "MethodModifier",
762
+ "canonicalReference": "@alloy-js/csharp!MethodModifier:type"
763
+ },
764
+ {
765
+ "kind": "Content",
766
+ "text": ";"
767
+ }
768
+ ],
769
+ "isReadonly": false,
770
+ "isOptional": true,
771
+ "releaseTag": "Public",
772
+ "name": "methodModifier",
773
+ "propertyTypeTokenRange": {
774
+ "startIndex": 1,
775
+ "endIndex": 2
776
+ }
777
+ },
778
+ {
779
+ "kind": "PropertySignature",
780
+ "canonicalReference": "@alloy-js/csharp!ClassMethodProps#name:member",
781
+ "docComment": "",
782
+ "excerptTokens": [
783
+ {
784
+ "kind": "Content",
785
+ "text": "name: "
786
+ },
787
+ {
788
+ "kind": "Content",
789
+ "text": "string"
790
+ },
791
+ {
792
+ "kind": "Content",
793
+ "text": ";"
794
+ }
795
+ ],
796
+ "isReadonly": false,
797
+ "isOptional": false,
798
+ "releaseTag": "Public",
799
+ "name": "name",
800
+ "propertyTypeTokenRange": {
801
+ "startIndex": 1,
802
+ "endIndex": 2
803
+ }
804
+ },
805
+ {
806
+ "kind": "PropertySignature",
807
+ "canonicalReference": "@alloy-js/csharp!ClassMethodProps#parameters:member",
808
+ "docComment": "",
809
+ "excerptTokens": [
810
+ {
811
+ "kind": "Content",
812
+ "text": "parameters?: "
813
+ },
814
+ {
815
+ "kind": "Reference",
816
+ "text": "Array",
817
+ "canonicalReference": "!Array:interface"
818
+ },
819
+ {
820
+ "kind": "Content",
821
+ "text": "<"
822
+ },
823
+ {
824
+ "kind": "Reference",
825
+ "text": "ParameterProps",
826
+ "canonicalReference": "@alloy-js/csharp!ParameterProps:interface"
827
+ },
828
+ {
829
+ "kind": "Content",
830
+ "text": ">"
831
+ },
832
+ {
833
+ "kind": "Content",
834
+ "text": ";"
835
+ }
836
+ ],
837
+ "isReadonly": false,
838
+ "isOptional": true,
839
+ "releaseTag": "Public",
840
+ "name": "parameters",
841
+ "propertyTypeTokenRange": {
842
+ "startIndex": 1,
843
+ "endIndex": 5
844
+ }
845
+ },
846
+ {
847
+ "kind": "PropertySignature",
848
+ "canonicalReference": "@alloy-js/csharp!ClassMethodProps#returns:member",
849
+ "docComment": "",
850
+ "excerptTokens": [
851
+ {
852
+ "kind": "Content",
853
+ "text": "returns?: "
854
+ },
855
+ {
856
+ "kind": "Reference",
857
+ "text": "core.Children",
858
+ "canonicalReference": "@alloy-js/core!Children:type"
859
+ },
860
+ {
861
+ "kind": "Content",
862
+ "text": ";"
863
+ }
864
+ ],
865
+ "isReadonly": false,
866
+ "isOptional": true,
867
+ "releaseTag": "Public",
868
+ "name": "returns",
869
+ "propertyTypeTokenRange": {
870
+ "startIndex": 1,
871
+ "endIndex": 2
872
+ }
873
+ }
874
+ ],
875
+ "extendsTokenRanges": [
876
+ {
877
+ "startIndex": 1,
878
+ "endIndex": 5
879
+ }
880
+ ]
881
+ },
882
+ {
883
+ "kind": "Interface",
884
+ "canonicalReference": "@alloy-js/csharp!ClassProps:interface",
885
+ "docComment": "",
886
+ "excerptTokens": [
887
+ {
888
+ "kind": "Content",
889
+ "text": "export interface ClassProps extends "
890
+ },
891
+ {
892
+ "kind": "Reference",
893
+ "text": "Omit",
894
+ "canonicalReference": "!Omit:type"
895
+ },
896
+ {
897
+ "kind": "Content",
898
+ "text": "<"
899
+ },
900
+ {
901
+ "kind": "Reference",
902
+ "text": "core.DeclarationProps",
903
+ "canonicalReference": "@alloy-js/core!DeclarationProps:interface"
904
+ },
905
+ {
906
+ "kind": "Content",
907
+ "text": ", \"nameKind\">"
908
+ },
909
+ {
910
+ "kind": "Content",
911
+ "text": " "
912
+ }
913
+ ],
914
+ "fileUrlPath": "src/components/Class.tsx",
915
+ "releaseTag": "Public",
916
+ "name": "ClassProps",
917
+ "preserveMemberOrder": false,
918
+ "members": [
919
+ {
920
+ "kind": "PropertySignature",
921
+ "canonicalReference": "@alloy-js/csharp!ClassProps#accessModifier:member",
922
+ "docComment": "",
923
+ "excerptTokens": [
924
+ {
925
+ "kind": "Content",
926
+ "text": "accessModifier?: "
927
+ },
928
+ {
929
+ "kind": "Reference",
930
+ "text": "AccessModifier",
931
+ "canonicalReference": "@alloy-js/csharp!AccessModifier:type"
932
+ },
933
+ {
934
+ "kind": "Content",
935
+ "text": ";"
936
+ }
937
+ ],
938
+ "isReadonly": false,
939
+ "isOptional": true,
940
+ "releaseTag": "Public",
941
+ "name": "accessModifier",
942
+ "propertyTypeTokenRange": {
943
+ "startIndex": 1,
944
+ "endIndex": 2
945
+ }
946
+ },
947
+ {
948
+ "kind": "PropertySignature",
949
+ "canonicalReference": "@alloy-js/csharp!ClassProps#name:member",
950
+ "docComment": "",
951
+ "excerptTokens": [
952
+ {
953
+ "kind": "Content",
954
+ "text": "name: "
955
+ },
956
+ {
957
+ "kind": "Content",
958
+ "text": "string"
959
+ },
960
+ {
961
+ "kind": "Content",
962
+ "text": ";"
963
+ }
964
+ ],
965
+ "isReadonly": false,
966
+ "isOptional": false,
967
+ "releaseTag": "Public",
968
+ "name": "name",
969
+ "propertyTypeTokenRange": {
970
+ "startIndex": 1,
971
+ "endIndex": 2
972
+ }
973
+ },
974
+ {
975
+ "kind": "PropertySignature",
976
+ "canonicalReference": "@alloy-js/csharp!ClassProps#typeParameters:member",
977
+ "docComment": "",
978
+ "excerptTokens": [
979
+ {
980
+ "kind": "Content",
981
+ "text": "typeParameters?: "
982
+ },
983
+ {
984
+ "kind": "Reference",
985
+ "text": "Record",
986
+ "canonicalReference": "!Record:type"
987
+ },
988
+ {
989
+ "kind": "Content",
990
+ "text": "<string, "
991
+ },
992
+ {
993
+ "kind": "Reference",
994
+ "text": "core.Refkey",
995
+ "canonicalReference": "@alloy-js/core!Refkey:type"
996
+ },
997
+ {
998
+ "kind": "Content",
999
+ "text": ">"
1000
+ },
1001
+ {
1002
+ "kind": "Content",
1003
+ "text": ";"
1004
+ }
1005
+ ],
1006
+ "isReadonly": false,
1007
+ "isOptional": true,
1008
+ "releaseTag": "Public",
1009
+ "name": "typeParameters",
1010
+ "propertyTypeTokenRange": {
1011
+ "startIndex": 1,
1012
+ "endIndex": 5
1013
+ }
1014
+ }
1015
+ ],
1016
+ "extendsTokenRanges": [
1017
+ {
1018
+ "startIndex": 1,
1019
+ "endIndex": 5
1020
+ }
1021
+ ]
1022
+ },
1023
+ {
1024
+ "kind": "Function",
1025
+ "canonicalReference": "@alloy-js/csharp!createCSharpMemberScope:function(1)",
1026
+ "docComment": "",
1027
+ "excerptTokens": [
1028
+ {
1029
+ "kind": "Content",
1030
+ "text": "export declare function createCSharpMemberScope(binder: "
1031
+ },
1032
+ {
1033
+ "kind": "Reference",
1034
+ "text": "core.Binder",
1035
+ "canonicalReference": "@alloy-js/core!Binder:interface"
1036
+ },
1037
+ {
1038
+ "kind": "Content",
1039
+ "text": ", parent: "
1040
+ },
1041
+ {
1042
+ "kind": "Reference",
1043
+ "text": "core.OutputScope",
1044
+ "canonicalReference": "@alloy-js/core!OutputScope:interface"
1045
+ },
1046
+ {
1047
+ "kind": "Content",
1048
+ "text": ", owner: "
1049
+ },
1050
+ {
1051
+ "kind": "Reference",
1052
+ "text": "CSharpOutputSymbol",
1053
+ "canonicalReference": "@alloy-js/csharp!CSharpOutputSymbol:interface"
1054
+ },
1055
+ {
1056
+ "kind": "Content",
1057
+ "text": ", name: "
1058
+ },
1059
+ {
1060
+ "kind": "Reference",
1061
+ "text": "CSharpMemberScopeName",
1062
+ "canonicalReference": "@alloy-js/csharp!CSharpMemberScopeName:type"
1063
+ },
1064
+ {
1065
+ "kind": "Content",
1066
+ "text": "): "
1067
+ },
1068
+ {
1069
+ "kind": "Reference",
1070
+ "text": "CSharpMemberScope",
1071
+ "canonicalReference": "@alloy-js/csharp!CSharpMemberScope:interface"
1072
+ },
1073
+ {
1074
+ "kind": "Content",
1075
+ "text": ";"
1076
+ }
1077
+ ],
1078
+ "fileUrlPath": "src/symbols/scopes.ts",
1079
+ "returnTypeTokenRange": {
1080
+ "startIndex": 9,
1081
+ "endIndex": 10
1082
+ },
1083
+ "releaseTag": "Public",
1084
+ "overloadIndex": 1,
1085
+ "parameters": [
1086
+ {
1087
+ "parameterName": "binder",
1088
+ "parameterTypeTokenRange": {
1089
+ "startIndex": 1,
1090
+ "endIndex": 2
1091
+ },
1092
+ "isOptional": false
1093
+ },
1094
+ {
1095
+ "parameterName": "parent",
1096
+ "parameterTypeTokenRange": {
1097
+ "startIndex": 3,
1098
+ "endIndex": 4
1099
+ },
1100
+ "isOptional": false
1101
+ },
1102
+ {
1103
+ "parameterName": "owner",
1104
+ "parameterTypeTokenRange": {
1105
+ "startIndex": 5,
1106
+ "endIndex": 6
1107
+ },
1108
+ "isOptional": false
1109
+ },
1110
+ {
1111
+ "parameterName": "name",
1112
+ "parameterTypeTokenRange": {
1113
+ "startIndex": 7,
1114
+ "endIndex": 8
1115
+ },
1116
+ "isOptional": false
1117
+ }
1118
+ ],
1119
+ "name": "createCSharpMemberScope"
1120
+ },
1121
+ {
1122
+ "kind": "Function",
1123
+ "canonicalReference": "@alloy-js/csharp!createCSharpNamePolicy:function(1)",
1124
+ "docComment": "",
1125
+ "excerptTokens": [
1126
+ {
1127
+ "kind": "Content",
1128
+ "text": "export declare function createCSharpNamePolicy(): "
1129
+ },
1130
+ {
1131
+ "kind": "Reference",
1132
+ "text": "core.NamePolicy",
1133
+ "canonicalReference": "@alloy-js/core!NamePolicy:interface"
1134
+ },
1135
+ {
1136
+ "kind": "Content",
1137
+ "text": "<"
1138
+ },
1139
+ {
1140
+ "kind": "Reference",
1141
+ "text": "CSharpElements",
1142
+ "canonicalReference": "@alloy-js/csharp!CSharpElements:type"
1143
+ },
1144
+ {
1145
+ "kind": "Content",
1146
+ "text": ">"
1147
+ },
1148
+ {
1149
+ "kind": "Content",
1150
+ "text": ";"
1151
+ }
1152
+ ],
1153
+ "fileUrlPath": "src/name-policy.ts",
1154
+ "returnTypeTokenRange": {
1155
+ "startIndex": 1,
1156
+ "endIndex": 5
1157
+ },
1158
+ "releaseTag": "Public",
1159
+ "overloadIndex": 1,
1160
+ "parameters": [],
1161
+ "name": "createCSharpNamePolicy"
1162
+ },
1163
+ {
1164
+ "kind": "Function",
1165
+ "canonicalReference": "@alloy-js/csharp!createCSharpNamespaceScope:function(1)",
1166
+ "docComment": "",
1167
+ "excerptTokens": [
1168
+ {
1169
+ "kind": "Content",
1170
+ "text": "export declare function createCSharpNamespaceScope(binder: "
1171
+ },
1172
+ {
1173
+ "kind": "Reference",
1174
+ "text": "core.Binder",
1175
+ "canonicalReference": "@alloy-js/core!Binder:interface"
1176
+ },
1177
+ {
1178
+ "kind": "Content",
1179
+ "text": ", parent: "
1180
+ },
1181
+ {
1182
+ "kind": "Reference",
1183
+ "text": "core.OutputScope",
1184
+ "canonicalReference": "@alloy-js/core!OutputScope:interface"
1185
+ },
1186
+ {
1187
+ "kind": "Content",
1188
+ "text": " | undefined"
1189
+ },
1190
+ {
1191
+ "kind": "Content",
1192
+ "text": ", name: "
1193
+ },
1194
+ {
1195
+ "kind": "Content",
1196
+ "text": "string"
1197
+ },
1198
+ {
1199
+ "kind": "Content",
1200
+ "text": "): "
1201
+ },
1202
+ {
1203
+ "kind": "Reference",
1204
+ "text": "CSharpNamespaceScope",
1205
+ "canonicalReference": "@alloy-js/csharp!CSharpNamespaceScope:interface"
1206
+ },
1207
+ {
1208
+ "kind": "Content",
1209
+ "text": ";"
1210
+ }
1211
+ ],
1212
+ "fileUrlPath": "src/symbols/scopes.ts",
1213
+ "returnTypeTokenRange": {
1214
+ "startIndex": 8,
1215
+ "endIndex": 9
1216
+ },
1217
+ "releaseTag": "Public",
1218
+ "overloadIndex": 1,
1219
+ "parameters": [
1220
+ {
1221
+ "parameterName": "binder",
1222
+ "parameterTypeTokenRange": {
1223
+ "startIndex": 1,
1224
+ "endIndex": 2
1225
+ },
1226
+ "isOptional": false
1227
+ },
1228
+ {
1229
+ "parameterName": "parent",
1230
+ "parameterTypeTokenRange": {
1231
+ "startIndex": 3,
1232
+ "endIndex": 5
1233
+ },
1234
+ "isOptional": false
1235
+ },
1236
+ {
1237
+ "parameterName": "name",
1238
+ "parameterTypeTokenRange": {
1239
+ "startIndex": 6,
1240
+ "endIndex": 7
1241
+ },
1242
+ "isOptional": false
1243
+ }
1244
+ ],
1245
+ "name": "createCSharpNamespaceScope"
1246
+ },
1247
+ {
1248
+ "kind": "Function",
1249
+ "canonicalReference": "@alloy-js/csharp!createCSharpSymbol:function(1)",
1250
+ "docComment": "",
1251
+ "excerptTokens": [
1252
+ {
1253
+ "kind": "Content",
1254
+ "text": "export declare function createCSharpSymbol(props: "
1255
+ },
1256
+ {
1257
+ "kind": "Reference",
1258
+ "text": "core.DeclarationProps",
1259
+ "canonicalReference": "@alloy-js/core!DeclarationProps:interface"
1260
+ },
1261
+ {
1262
+ "kind": "Content",
1263
+ "text": "): "
1264
+ },
1265
+ {
1266
+ "kind": "Reference",
1267
+ "text": "CSharpOutputSymbol",
1268
+ "canonicalReference": "@alloy-js/csharp!CSharpOutputSymbol:interface"
1269
+ },
1270
+ {
1271
+ "kind": "Content",
1272
+ "text": ";"
1273
+ }
1274
+ ],
1275
+ "fileUrlPath": "src/symbols/csharp-output-symbol.ts",
1276
+ "returnTypeTokenRange": {
1277
+ "startIndex": 3,
1278
+ "endIndex": 4
1279
+ },
1280
+ "releaseTag": "Public",
1281
+ "overloadIndex": 1,
1282
+ "parameters": [
1283
+ {
1284
+ "parameterName": "props",
1285
+ "parameterTypeTokenRange": {
1286
+ "startIndex": 1,
1287
+ "endIndex": 2
1288
+ },
1289
+ "isOptional": false
1290
+ }
1291
+ ],
1292
+ "name": "createCSharpSymbol"
1293
+ },
1294
+ {
1295
+ "kind": "TypeAlias",
1296
+ "canonicalReference": "@alloy-js/csharp!CSharpElements:type",
1297
+ "docComment": "",
1298
+ "excerptTokens": [
1299
+ {
1300
+ "kind": "Content",
1301
+ "text": "export type CSharpElements = "
1302
+ },
1303
+ {
1304
+ "kind": "Content",
1305
+ "text": "\"class\" | \"constant\" | \"enum\" | \"enum-member\" | \"function\" | \"interface\" | \"class-member-private\" | \"class-member-public\" | \"class-method\" | \"parameter\" | \"type-parameter\""
1306
+ },
1307
+ {
1308
+ "kind": "Content",
1309
+ "text": ";"
1310
+ }
1311
+ ],
1312
+ "fileUrlPath": "src/name-policy.ts",
1313
+ "releaseTag": "Public",
1314
+ "name": "CSharpElements",
1315
+ "typeTokenRange": {
1316
+ "startIndex": 1,
1317
+ "endIndex": 2
1318
+ }
1319
+ },
1320
+ {
1321
+ "kind": "Interface",
1322
+ "canonicalReference": "@alloy-js/csharp!CSharpMemberScope:interface",
1323
+ "docComment": "",
1324
+ "excerptTokens": [
1325
+ {
1326
+ "kind": "Content",
1327
+ "text": "export interface CSharpMemberScope extends "
1328
+ },
1329
+ {
1330
+ "kind": "Reference",
1331
+ "text": "core.OutputScope",
1332
+ "canonicalReference": "@alloy-js/core!OutputScope:interface"
1333
+ },
1334
+ {
1335
+ "kind": "Content",
1336
+ "text": " "
1337
+ }
1338
+ ],
1339
+ "fileUrlPath": "src/symbols/scopes.ts",
1340
+ "releaseTag": "Public",
1341
+ "name": "CSharpMemberScope",
1342
+ "preserveMemberOrder": false,
1343
+ "members": [
1344
+ {
1345
+ "kind": "PropertySignature",
1346
+ "canonicalReference": "@alloy-js/csharp!CSharpMemberScope#kind:member",
1347
+ "docComment": "",
1348
+ "excerptTokens": [
1349
+ {
1350
+ "kind": "Content",
1351
+ "text": "kind: "
1352
+ },
1353
+ {
1354
+ "kind": "Content",
1355
+ "text": "\"member\""
1356
+ },
1357
+ {
1358
+ "kind": "Content",
1359
+ "text": ";"
1360
+ }
1361
+ ],
1362
+ "isReadonly": false,
1363
+ "isOptional": false,
1364
+ "releaseTag": "Public",
1365
+ "name": "kind",
1366
+ "propertyTypeTokenRange": {
1367
+ "startIndex": 1,
1368
+ "endIndex": 2
1369
+ }
1370
+ },
1371
+ {
1372
+ "kind": "PropertySignature",
1373
+ "canonicalReference": "@alloy-js/csharp!CSharpMemberScope#name:member",
1374
+ "docComment": "",
1375
+ "excerptTokens": [
1376
+ {
1377
+ "kind": "Content",
1378
+ "text": "name: "
1379
+ },
1380
+ {
1381
+ "kind": "Reference",
1382
+ "text": "CSharpMemberScopeName",
1383
+ "canonicalReference": "@alloy-js/csharp!CSharpMemberScopeName:type"
1384
+ },
1385
+ {
1386
+ "kind": "Content",
1387
+ "text": ";"
1388
+ }
1389
+ ],
1390
+ "isReadonly": false,
1391
+ "isOptional": false,
1392
+ "releaseTag": "Public",
1393
+ "name": "name",
1394
+ "propertyTypeTokenRange": {
1395
+ "startIndex": 1,
1396
+ "endIndex": 2
1397
+ }
1398
+ },
1399
+ {
1400
+ "kind": "PropertySignature",
1401
+ "canonicalReference": "@alloy-js/csharp!CSharpMemberScope#owner:member",
1402
+ "docComment": "",
1403
+ "excerptTokens": [
1404
+ {
1405
+ "kind": "Content",
1406
+ "text": "owner: "
1407
+ },
1408
+ {
1409
+ "kind": "Reference",
1410
+ "text": "CSharpOutputSymbol",
1411
+ "canonicalReference": "@alloy-js/csharp!CSharpOutputSymbol:interface"
1412
+ },
1413
+ {
1414
+ "kind": "Content",
1415
+ "text": ";"
1416
+ }
1417
+ ],
1418
+ "isReadonly": false,
1419
+ "isOptional": false,
1420
+ "releaseTag": "Public",
1421
+ "name": "owner",
1422
+ "propertyTypeTokenRange": {
1423
+ "startIndex": 1,
1424
+ "endIndex": 2
1425
+ }
1426
+ }
1427
+ ],
1428
+ "extendsTokenRanges": [
1429
+ {
1430
+ "startIndex": 1,
1431
+ "endIndex": 2
1432
+ }
1433
+ ]
1434
+ },
1435
+ {
1436
+ "kind": "TypeAlias",
1437
+ "canonicalReference": "@alloy-js/csharp!CSharpMemberScopeName:type",
1438
+ "docComment": "",
1439
+ "excerptTokens": [
1440
+ {
1441
+ "kind": "Content",
1442
+ "text": "export type CSharpMemberScopeName = "
1443
+ },
1444
+ {
1445
+ "kind": "Content",
1446
+ "text": "\"class-decl\" | \"constructor-decl\" | \"enum-decl\" | \"method-decl\""
1447
+ },
1448
+ {
1449
+ "kind": "Content",
1450
+ "text": ";"
1451
+ }
1452
+ ],
1453
+ "fileUrlPath": "src/symbols/scopes.ts",
1454
+ "releaseTag": "Public",
1455
+ "name": "CSharpMemberScopeName",
1456
+ "typeTokenRange": {
1457
+ "startIndex": 1,
1458
+ "endIndex": 2
1459
+ }
1460
+ },
1461
+ {
1462
+ "kind": "Interface",
1463
+ "canonicalReference": "@alloy-js/csharp!CSharpNamespaceScope:interface",
1464
+ "docComment": "",
1465
+ "excerptTokens": [
1466
+ {
1467
+ "kind": "Content",
1468
+ "text": "export interface CSharpNamespaceScope extends "
1469
+ },
1470
+ {
1471
+ "kind": "Reference",
1472
+ "text": "core.OutputScope",
1473
+ "canonicalReference": "@alloy-js/core!OutputScope:interface"
1474
+ },
1475
+ {
1476
+ "kind": "Content",
1477
+ "text": " "
1478
+ }
1479
+ ],
1480
+ "fileUrlPath": "src/symbols/scopes.ts",
1481
+ "releaseTag": "Public",
1482
+ "name": "CSharpNamespaceScope",
1483
+ "preserveMemberOrder": false,
1484
+ "members": [
1485
+ {
1486
+ "kind": "PropertySignature",
1487
+ "canonicalReference": "@alloy-js/csharp!CSharpNamespaceScope#kind:member",
1488
+ "docComment": "",
1489
+ "excerptTokens": [
1490
+ {
1491
+ "kind": "Content",
1492
+ "text": "kind: "
1493
+ },
1494
+ {
1495
+ "kind": "Content",
1496
+ "text": "\"namespace\""
1497
+ },
1498
+ {
1499
+ "kind": "Content",
1500
+ "text": ";"
1501
+ }
1502
+ ],
1503
+ "isReadonly": false,
1504
+ "isOptional": false,
1505
+ "releaseTag": "Public",
1506
+ "name": "kind",
1507
+ "propertyTypeTokenRange": {
1508
+ "startIndex": 1,
1509
+ "endIndex": 2
1510
+ }
1511
+ }
1512
+ ],
1513
+ "extendsTokenRanges": [
1514
+ {
1515
+ "startIndex": 1,
1516
+ "endIndex": 2
1517
+ }
1518
+ ]
1519
+ },
1520
+ {
1521
+ "kind": "TypeAlias",
1522
+ "canonicalReference": "@alloy-js/csharp!CSharpOutputScope:type",
1523
+ "docComment": "",
1524
+ "excerptTokens": [
1525
+ {
1526
+ "kind": "Content",
1527
+ "text": "export type CSharpOutputScope = "
1528
+ },
1529
+ {
1530
+ "kind": "Reference",
1531
+ "text": "CSharpMemberScope",
1532
+ "canonicalReference": "@alloy-js/csharp!CSharpMemberScope:interface"
1533
+ },
1534
+ {
1535
+ "kind": "Content",
1536
+ "text": " | "
1537
+ },
1538
+ {
1539
+ "kind": "Reference",
1540
+ "text": "CSharpNamespaceScope",
1541
+ "canonicalReference": "@alloy-js/csharp!CSharpNamespaceScope:interface"
1542
+ },
1543
+ {
1544
+ "kind": "Content",
1545
+ "text": ";"
1546
+ }
1547
+ ],
1548
+ "fileUrlPath": "src/symbols/scopes.ts",
1549
+ "releaseTag": "Public",
1550
+ "name": "CSharpOutputScope",
1551
+ "typeTokenRange": {
1552
+ "startIndex": 1,
1553
+ "endIndex": 4
1554
+ }
1555
+ },
1556
+ {
1557
+ "kind": "Interface",
1558
+ "canonicalReference": "@alloy-js/csharp!CSharpOutputSymbol:interface",
1559
+ "docComment": "",
1560
+ "excerptTokens": [
1561
+ {
1562
+ "kind": "Content",
1563
+ "text": "export interface CSharpOutputSymbol extends "
1564
+ },
1565
+ {
1566
+ "kind": "Reference",
1567
+ "text": "core.OutputSymbol",
1568
+ "canonicalReference": "@alloy-js/core!OutputSymbol:interface"
1569
+ },
1570
+ {
1571
+ "kind": "Content",
1572
+ "text": " "
1573
+ }
1574
+ ],
1575
+ "fileUrlPath": "src/symbols/csharp-output-symbol.ts",
1576
+ "releaseTag": "Public",
1577
+ "name": "CSharpOutputSymbol",
1578
+ "preserveMemberOrder": false,
1579
+ "members": [
1580
+ {
1581
+ "kind": "PropertySignature",
1582
+ "canonicalReference": "@alloy-js/csharp!CSharpOutputSymbol#scope:member",
1583
+ "docComment": "",
1584
+ "excerptTokens": [
1585
+ {
1586
+ "kind": "Content",
1587
+ "text": "scope: "
1588
+ },
1589
+ {
1590
+ "kind": "Reference",
1591
+ "text": "CSharpOutputScope",
1592
+ "canonicalReference": "@alloy-js/csharp!CSharpOutputScope:type"
1593
+ },
1594
+ {
1595
+ "kind": "Content",
1596
+ "text": ";"
1597
+ }
1598
+ ],
1599
+ "isReadonly": false,
1600
+ "isOptional": false,
1601
+ "releaseTag": "Public",
1602
+ "name": "scope",
1603
+ "propertyTypeTokenRange": {
1604
+ "startIndex": 1,
1605
+ "endIndex": 2
1606
+ }
1607
+ }
1608
+ ],
1609
+ "extendsTokenRanges": [
1610
+ {
1611
+ "startIndex": 1,
1612
+ "endIndex": 2
1613
+ }
1614
+ ]
1615
+ },
1616
+ {
1617
+ "kind": "Function",
1618
+ "canonicalReference": "@alloy-js/csharp!Declaration:function(1)",
1619
+ "docComment": "",
1620
+ "excerptTokens": [
1621
+ {
1622
+ "kind": "Content",
1623
+ "text": "export declare function Declaration(props: "
1624
+ },
1625
+ {
1626
+ "kind": "Reference",
1627
+ "text": "DeclarationProps",
1628
+ "canonicalReference": "@alloy-js/csharp!DeclarationProps:interface"
1629
+ },
1630
+ {
1631
+ "kind": "Content",
1632
+ "text": "): "
1633
+ },
1634
+ {
1635
+ "kind": "Content",
1636
+ "text": "any"
1637
+ },
1638
+ {
1639
+ "kind": "Content",
1640
+ "text": ";"
1641
+ }
1642
+ ],
1643
+ "fileUrlPath": "src/components/Declaration.tsx",
1644
+ "returnTypeTokenRange": {
1645
+ "startIndex": 3,
1646
+ "endIndex": 4
1647
+ },
1648
+ "releaseTag": "Public",
1649
+ "overloadIndex": 1,
1650
+ "parameters": [
1651
+ {
1652
+ "parameterName": "props",
1653
+ "parameterTypeTokenRange": {
1654
+ "startIndex": 1,
1655
+ "endIndex": 2
1656
+ },
1657
+ "isOptional": false
1658
+ }
1659
+ ],
1660
+ "name": "Declaration"
1661
+ },
1662
+ {
1663
+ "kind": "Interface",
1664
+ "canonicalReference": "@alloy-js/csharp!DeclarationProps:interface",
1665
+ "docComment": "",
1666
+ "excerptTokens": [
1667
+ {
1668
+ "kind": "Content",
1669
+ "text": "export interface DeclarationProps "
1670
+ }
1671
+ ],
1672
+ "fileUrlPath": "src/components/Declaration.tsx",
1673
+ "releaseTag": "Public",
1674
+ "name": "DeclarationProps",
1675
+ "preserveMemberOrder": false,
1676
+ "members": [
1677
+ {
1678
+ "kind": "PropertySignature",
1679
+ "canonicalReference": "@alloy-js/csharp!DeclarationProps#children:member",
1680
+ "docComment": "",
1681
+ "excerptTokens": [
1682
+ {
1683
+ "kind": "Content",
1684
+ "text": "children?: "
1685
+ },
1686
+ {
1687
+ "kind": "Reference",
1688
+ "text": "core.Children",
1689
+ "canonicalReference": "@alloy-js/core!Children:type"
1690
+ },
1691
+ {
1692
+ "kind": "Content",
1693
+ "text": ";"
1694
+ }
1695
+ ],
1696
+ "isReadonly": false,
1697
+ "isOptional": true,
1698
+ "releaseTag": "Public",
1699
+ "name": "children",
1700
+ "propertyTypeTokenRange": {
1701
+ "startIndex": 1,
1702
+ "endIndex": 2
1703
+ }
1704
+ },
1705
+ {
1706
+ "kind": "PropertySignature",
1707
+ "canonicalReference": "@alloy-js/csharp!DeclarationProps#name:member",
1708
+ "docComment": "",
1709
+ "excerptTokens": [
1710
+ {
1711
+ "kind": "Content",
1712
+ "text": "name: "
1713
+ },
1714
+ {
1715
+ "kind": "Content",
1716
+ "text": "string"
1717
+ },
1718
+ {
1719
+ "kind": "Content",
1720
+ "text": ";"
1721
+ }
1722
+ ],
1723
+ "isReadonly": false,
1724
+ "isOptional": false,
1725
+ "releaseTag": "Public",
1726
+ "name": "name",
1727
+ "propertyTypeTokenRange": {
1728
+ "startIndex": 1,
1729
+ "endIndex": 2
1730
+ }
1731
+ },
1732
+ {
1733
+ "kind": "PropertySignature",
1734
+ "canonicalReference": "@alloy-js/csharp!DeclarationProps#refkey:member",
1735
+ "docComment": "",
1736
+ "excerptTokens": [
1737
+ {
1738
+ "kind": "Content",
1739
+ "text": "refkey?: "
1740
+ },
1741
+ {
1742
+ "kind": "Reference",
1743
+ "text": "core.Refkey",
1744
+ "canonicalReference": "@alloy-js/core!Refkey:type"
1745
+ },
1746
+ {
1747
+ "kind": "Content",
1748
+ "text": ";"
1749
+ }
1750
+ ],
1751
+ "isReadonly": false,
1752
+ "isOptional": true,
1753
+ "releaseTag": "Public",
1754
+ "name": "refkey",
1755
+ "propertyTypeTokenRange": {
1756
+ "startIndex": 1,
1757
+ "endIndex": 2
1758
+ }
1759
+ }
1760
+ ],
1761
+ "extendsTokenRanges": []
1762
+ },
1763
+ {
1764
+ "kind": "Function",
1765
+ "canonicalReference": "@alloy-js/csharp!Enum:function(1)",
1766
+ "docComment": "",
1767
+ "excerptTokens": [
1768
+ {
1769
+ "kind": "Content",
1770
+ "text": "export declare function Enum(props: "
1771
+ },
1772
+ {
1773
+ "kind": "Reference",
1774
+ "text": "EnumProps",
1775
+ "canonicalReference": "@alloy-js/csharp!EnumProps:interface"
1776
+ },
1777
+ {
1778
+ "kind": "Content",
1779
+ "text": "): "
1780
+ },
1781
+ {
1782
+ "kind": "Content",
1783
+ "text": "any"
1784
+ },
1785
+ {
1786
+ "kind": "Content",
1787
+ "text": ";"
1788
+ }
1789
+ ],
1790
+ "fileUrlPath": "src/components/Enum.tsx",
1791
+ "returnTypeTokenRange": {
1792
+ "startIndex": 3,
1793
+ "endIndex": 4
1794
+ },
1795
+ "releaseTag": "Public",
1796
+ "overloadIndex": 1,
1797
+ "parameters": [
1798
+ {
1799
+ "parameterName": "props",
1800
+ "parameterTypeTokenRange": {
1801
+ "startIndex": 1,
1802
+ "endIndex": 2
1803
+ },
1804
+ "isOptional": false
1805
+ }
1806
+ ],
1807
+ "name": "Enum"
1808
+ },
1809
+ {
1810
+ "kind": "Function",
1811
+ "canonicalReference": "@alloy-js/csharp!EnumMember:function(1)",
1812
+ "docComment": "",
1813
+ "excerptTokens": [
1814
+ {
1815
+ "kind": "Content",
1816
+ "text": "export declare function EnumMember(props: "
1817
+ },
1818
+ {
1819
+ "kind": "Reference",
1820
+ "text": "EnumMemberProps",
1821
+ "canonicalReference": "@alloy-js/csharp!EnumMemberProps:interface"
1822
+ },
1823
+ {
1824
+ "kind": "Content",
1825
+ "text": "): "
1826
+ },
1827
+ {
1828
+ "kind": "Content",
1829
+ "text": "any"
1830
+ },
1831
+ {
1832
+ "kind": "Content",
1833
+ "text": ";"
1834
+ }
1835
+ ],
1836
+ "fileUrlPath": "src/components/Enum.tsx",
1837
+ "returnTypeTokenRange": {
1838
+ "startIndex": 3,
1839
+ "endIndex": 4
1840
+ },
1841
+ "releaseTag": "Public",
1842
+ "overloadIndex": 1,
1843
+ "parameters": [
1844
+ {
1845
+ "parameterName": "props",
1846
+ "parameterTypeTokenRange": {
1847
+ "startIndex": 1,
1848
+ "endIndex": 2
1849
+ },
1850
+ "isOptional": false
1851
+ }
1852
+ ],
1853
+ "name": "EnumMember"
1854
+ },
1855
+ {
1856
+ "kind": "Interface",
1857
+ "canonicalReference": "@alloy-js/csharp!EnumMemberProps:interface",
1858
+ "docComment": "",
1859
+ "excerptTokens": [
1860
+ {
1861
+ "kind": "Content",
1862
+ "text": "export interface EnumMemberProps "
1863
+ }
1864
+ ],
1865
+ "fileUrlPath": "src/components/Enum.tsx",
1866
+ "releaseTag": "Public",
1867
+ "name": "EnumMemberProps",
1868
+ "preserveMemberOrder": false,
1869
+ "members": [
1870
+ {
1871
+ "kind": "PropertySignature",
1872
+ "canonicalReference": "@alloy-js/csharp!EnumMemberProps#name:member",
1873
+ "docComment": "",
1874
+ "excerptTokens": [
1875
+ {
1876
+ "kind": "Content",
1877
+ "text": "name: "
1878
+ },
1879
+ {
1880
+ "kind": "Content",
1881
+ "text": "string"
1882
+ },
1883
+ {
1884
+ "kind": "Content",
1885
+ "text": ";"
1886
+ }
1887
+ ],
1888
+ "isReadonly": false,
1889
+ "isOptional": false,
1890
+ "releaseTag": "Public",
1891
+ "name": "name",
1892
+ "propertyTypeTokenRange": {
1893
+ "startIndex": 1,
1894
+ "endIndex": 2
1895
+ }
1896
+ },
1897
+ {
1898
+ "kind": "PropertySignature",
1899
+ "canonicalReference": "@alloy-js/csharp!EnumMemberProps#refkey:member",
1900
+ "docComment": "",
1901
+ "excerptTokens": [
1902
+ {
1903
+ "kind": "Content",
1904
+ "text": "refkey?: "
1905
+ },
1906
+ {
1907
+ "kind": "Reference",
1908
+ "text": "core.Refkey",
1909
+ "canonicalReference": "@alloy-js/core!Refkey:type"
1910
+ },
1911
+ {
1912
+ "kind": "Content",
1913
+ "text": ";"
1914
+ }
1915
+ ],
1916
+ "isReadonly": false,
1917
+ "isOptional": true,
1918
+ "releaseTag": "Public",
1919
+ "name": "refkey",
1920
+ "propertyTypeTokenRange": {
1921
+ "startIndex": 1,
1922
+ "endIndex": 2
1923
+ }
1924
+ }
1925
+ ],
1926
+ "extendsTokenRanges": []
1927
+ },
1928
+ {
1929
+ "kind": "Interface",
1930
+ "canonicalReference": "@alloy-js/csharp!EnumProps:interface",
1931
+ "docComment": "",
1932
+ "excerptTokens": [
1933
+ {
1934
+ "kind": "Content",
1935
+ "text": "export interface EnumProps extends "
1936
+ },
1937
+ {
1938
+ "kind": "Reference",
1939
+ "text": "Omit",
1940
+ "canonicalReference": "!Omit:type"
1941
+ },
1942
+ {
1943
+ "kind": "Content",
1944
+ "text": "<"
1945
+ },
1946
+ {
1947
+ "kind": "Reference",
1948
+ "text": "core.DeclarationProps",
1949
+ "canonicalReference": "@alloy-js/core!DeclarationProps:interface"
1950
+ },
1951
+ {
1952
+ "kind": "Content",
1953
+ "text": ", \"nameKind\">"
1954
+ },
1955
+ {
1956
+ "kind": "Content",
1957
+ "text": " "
1958
+ }
1959
+ ],
1960
+ "fileUrlPath": "src/components/Enum.tsx",
1961
+ "releaseTag": "Public",
1962
+ "name": "EnumProps",
1963
+ "preserveMemberOrder": false,
1964
+ "members": [
1965
+ {
1966
+ "kind": "PropertySignature",
1967
+ "canonicalReference": "@alloy-js/csharp!EnumProps#accessModifier:member",
1968
+ "docComment": "",
1969
+ "excerptTokens": [
1970
+ {
1971
+ "kind": "Content",
1972
+ "text": "accessModifier?: "
1973
+ },
1974
+ {
1975
+ "kind": "Reference",
1976
+ "text": "AccessModifier",
1977
+ "canonicalReference": "@alloy-js/csharp!AccessModifier:type"
1978
+ },
1979
+ {
1980
+ "kind": "Content",
1981
+ "text": ";"
1982
+ }
1983
+ ],
1984
+ "isReadonly": false,
1985
+ "isOptional": true,
1986
+ "releaseTag": "Public",
1987
+ "name": "accessModifier",
1988
+ "propertyTypeTokenRange": {
1989
+ "startIndex": 1,
1990
+ "endIndex": 2
1991
+ }
1992
+ },
1993
+ {
1994
+ "kind": "PropertySignature",
1995
+ "canonicalReference": "@alloy-js/csharp!EnumProps#name:member",
1996
+ "docComment": "",
1997
+ "excerptTokens": [
1998
+ {
1999
+ "kind": "Content",
2000
+ "text": "name: "
2001
+ },
2002
+ {
2003
+ "kind": "Content",
2004
+ "text": "string"
2005
+ },
2006
+ {
2007
+ "kind": "Content",
2008
+ "text": ";"
2009
+ }
2010
+ ],
2011
+ "isReadonly": false,
2012
+ "isOptional": false,
2013
+ "releaseTag": "Public",
2014
+ "name": "name",
2015
+ "propertyTypeTokenRange": {
2016
+ "startIndex": 1,
2017
+ "endIndex": 2
2018
+ }
2019
+ }
2020
+ ],
2021
+ "extendsTokenRanges": [
2022
+ {
2023
+ "startIndex": 1,
2024
+ "endIndex": 5
2025
+ }
2026
+ ]
2027
+ },
2028
+ {
2029
+ "kind": "Function",
2030
+ "canonicalReference": "@alloy-js/csharp!getAccessModifier:function(1)",
2031
+ "docComment": "",
2032
+ "excerptTokens": [
2033
+ {
2034
+ "kind": "Content",
2035
+ "text": "export declare function getAccessModifier(accessModifier?: "
2036
+ },
2037
+ {
2038
+ "kind": "Reference",
2039
+ "text": "AccessModifier",
2040
+ "canonicalReference": "@alloy-js/csharp!AccessModifier:type"
2041
+ },
2042
+ {
2043
+ "kind": "Content",
2044
+ "text": "): "
2045
+ },
2046
+ {
2047
+ "kind": "Content",
2048
+ "text": "string"
2049
+ },
2050
+ {
2051
+ "kind": "Content",
2052
+ "text": ";"
2053
+ }
2054
+ ],
2055
+ "fileUrlPath": "src/modifiers.ts",
2056
+ "returnTypeTokenRange": {
2057
+ "startIndex": 3,
2058
+ "endIndex": 4
2059
+ },
2060
+ "releaseTag": "Public",
2061
+ "overloadIndex": 1,
2062
+ "parameters": [
2063
+ {
2064
+ "parameterName": "accessModifier",
2065
+ "parameterTypeTokenRange": {
2066
+ "startIndex": 1,
2067
+ "endIndex": 2
2068
+ },
2069
+ "isOptional": true
2070
+ }
2071
+ ],
2072
+ "name": "getAccessModifier"
2073
+ },
2074
+ {
2075
+ "kind": "Function",
2076
+ "canonicalReference": "@alloy-js/csharp!getMethodModifier:function(1)",
2077
+ "docComment": "",
2078
+ "excerptTokens": [
2079
+ {
2080
+ "kind": "Content",
2081
+ "text": "export declare function getMethodModifier(methodModifier?: "
2082
+ },
2083
+ {
2084
+ "kind": "Reference",
2085
+ "text": "MethodModifier",
2086
+ "canonicalReference": "@alloy-js/csharp!MethodModifier:type"
2087
+ },
2088
+ {
2089
+ "kind": "Content",
2090
+ "text": "): "
2091
+ },
2092
+ {
2093
+ "kind": "Content",
2094
+ "text": "string"
2095
+ },
2096
+ {
2097
+ "kind": "Content",
2098
+ "text": ";"
2099
+ }
2100
+ ],
2101
+ "fileUrlPath": "src/modifiers.ts",
2102
+ "returnTypeTokenRange": {
2103
+ "startIndex": 3,
2104
+ "endIndex": 4
2105
+ },
2106
+ "releaseTag": "Public",
2107
+ "overloadIndex": 1,
2108
+ "parameters": [
2109
+ {
2110
+ "parameterName": "methodModifier",
2111
+ "parameterTypeTokenRange": {
2112
+ "startIndex": 1,
2113
+ "endIndex": 2
2114
+ },
2115
+ "isOptional": true
2116
+ }
2117
+ ],
2118
+ "name": "getMethodModifier"
2119
+ },
2120
+ {
2121
+ "kind": "TypeAlias",
2122
+ "canonicalReference": "@alloy-js/csharp!MethodModifier:type",
2123
+ "docComment": "",
2124
+ "excerptTokens": [
2125
+ {
2126
+ "kind": "Content",
2127
+ "text": "export type MethodModifier = "
2128
+ },
2129
+ {
2130
+ "kind": "Content",
2131
+ "text": "\"abstract\" | \"sealed\" | \"static\" | \"virtual\""
2132
+ },
2133
+ {
2134
+ "kind": "Content",
2135
+ "text": ";"
2136
+ }
2137
+ ],
2138
+ "fileUrlPath": "src/modifiers.ts",
2139
+ "releaseTag": "Public",
2140
+ "name": "MethodModifier",
2141
+ "typeTokenRange": {
2142
+ "startIndex": 1,
2143
+ "endIndex": 2
2144
+ }
2145
+ },
2146
+ {
2147
+ "kind": "Function",
2148
+ "canonicalReference": "@alloy-js/csharp!Name:function(1)",
2149
+ "docComment": "",
2150
+ "excerptTokens": [
2151
+ {
2152
+ "kind": "Content",
2153
+ "text": "export declare function Name(): "
2154
+ },
2155
+ {
2156
+ "kind": "Content",
2157
+ "text": "any"
2158
+ },
2159
+ {
2160
+ "kind": "Content",
2161
+ "text": ";"
2162
+ }
2163
+ ],
2164
+ "fileUrlPath": "src/components/Name.tsx",
2165
+ "returnTypeTokenRange": {
2166
+ "startIndex": 1,
2167
+ "endIndex": 2
2168
+ },
2169
+ "releaseTag": "Public",
2170
+ "overloadIndex": 1,
2171
+ "parameters": [],
2172
+ "name": "Name"
2173
+ },
2174
+ {
2175
+ "kind": "Function",
2176
+ "canonicalReference": "@alloy-js/csharp!Namespace:function(1)",
2177
+ "docComment": "",
2178
+ "excerptTokens": [
2179
+ {
2180
+ "kind": "Content",
2181
+ "text": "export declare function Namespace(props: "
2182
+ },
2183
+ {
2184
+ "kind": "Reference",
2185
+ "text": "NamespaceProps",
2186
+ "canonicalReference": "@alloy-js/csharp!NamespaceProps:interface"
2187
+ },
2188
+ {
2189
+ "kind": "Content",
2190
+ "text": "): "
2191
+ },
2192
+ {
2193
+ "kind": "Content",
2194
+ "text": "any"
2195
+ },
2196
+ {
2197
+ "kind": "Content",
2198
+ "text": ";"
2199
+ }
2200
+ ],
2201
+ "fileUrlPath": "src/components/Namespace.tsx",
2202
+ "returnTypeTokenRange": {
2203
+ "startIndex": 3,
2204
+ "endIndex": 4
2205
+ },
2206
+ "releaseTag": "Public",
2207
+ "overloadIndex": 1,
2208
+ "parameters": [
2209
+ {
2210
+ "parameterName": "props",
2211
+ "parameterTypeTokenRange": {
2212
+ "startIndex": 1,
2213
+ "endIndex": 2
2214
+ },
2215
+ "isOptional": false
2216
+ }
2217
+ ],
2218
+ "name": "Namespace"
2219
+ },
2220
+ {
2221
+ "kind": "Interface",
2222
+ "canonicalReference": "@alloy-js/csharp!NamespaceContext:interface",
2223
+ "docComment": "",
2224
+ "excerptTokens": [
2225
+ {
2226
+ "kind": "Content",
2227
+ "text": "export interface NamespaceContext "
2228
+ }
2229
+ ],
2230
+ "fileUrlPath": "src/components/Namespace.tsx",
2231
+ "releaseTag": "Public",
2232
+ "name": "NamespaceContext",
2233
+ "preserveMemberOrder": false,
2234
+ "members": [
2235
+ {
2236
+ "kind": "PropertySignature",
2237
+ "canonicalReference": "@alloy-js/csharp!NamespaceContext#name:member",
2238
+ "docComment": "",
2239
+ "excerptTokens": [
2240
+ {
2241
+ "kind": "Content",
2242
+ "text": "name: "
2243
+ },
2244
+ {
2245
+ "kind": "Content",
2246
+ "text": "string"
2247
+ },
2248
+ {
2249
+ "kind": "Content",
2250
+ "text": ";"
2251
+ }
2252
+ ],
2253
+ "isReadonly": false,
2254
+ "isOptional": false,
2255
+ "releaseTag": "Public",
2256
+ "name": "name",
2257
+ "propertyTypeTokenRange": {
2258
+ "startIndex": 1,
2259
+ "endIndex": 2
2260
+ }
2261
+ }
2262
+ ],
2263
+ "extendsTokenRanges": []
2264
+ },
2265
+ {
2266
+ "kind": "Interface",
2267
+ "canonicalReference": "@alloy-js/csharp!NamespaceProps:interface",
2268
+ "docComment": "",
2269
+ "excerptTokens": [
2270
+ {
2271
+ "kind": "Content",
2272
+ "text": "export interface NamespaceProps "
2273
+ }
2274
+ ],
2275
+ "fileUrlPath": "src/components/Namespace.tsx",
2276
+ "releaseTag": "Public",
2277
+ "name": "NamespaceProps",
2278
+ "preserveMemberOrder": false,
2279
+ "members": [
2280
+ {
2281
+ "kind": "PropertySignature",
2282
+ "canonicalReference": "@alloy-js/csharp!NamespaceProps#children:member",
2283
+ "docComment": "",
2284
+ "excerptTokens": [
2285
+ {
2286
+ "kind": "Content",
2287
+ "text": "children?: "
2288
+ },
2289
+ {
2290
+ "kind": "Reference",
2291
+ "text": "core.Children",
2292
+ "canonicalReference": "@alloy-js/core!Children:type"
2293
+ },
2294
+ {
2295
+ "kind": "Content",
2296
+ "text": ";"
2297
+ }
2298
+ ],
2299
+ "isReadonly": false,
2300
+ "isOptional": true,
2301
+ "releaseTag": "Public",
2302
+ "name": "children",
2303
+ "propertyTypeTokenRange": {
2304
+ "startIndex": 1,
2305
+ "endIndex": 2
2306
+ }
2307
+ },
2308
+ {
2309
+ "kind": "PropertySignature",
2310
+ "canonicalReference": "@alloy-js/csharp!NamespaceProps#name:member",
2311
+ "docComment": "",
2312
+ "excerptTokens": [
2313
+ {
2314
+ "kind": "Content",
2315
+ "text": "name: "
2316
+ },
2317
+ {
2318
+ "kind": "Content",
2319
+ "text": "string"
2320
+ },
2321
+ {
2322
+ "kind": "Content",
2323
+ "text": ";"
2324
+ }
2325
+ ],
2326
+ "isReadonly": false,
2327
+ "isOptional": false,
2328
+ "releaseTag": "Public",
2329
+ "name": "name",
2330
+ "propertyTypeTokenRange": {
2331
+ "startIndex": 1,
2332
+ "endIndex": 2
2333
+ }
2334
+ }
2335
+ ],
2336
+ "extendsTokenRanges": []
2337
+ },
2338
+ {
2339
+ "kind": "Function",
2340
+ "canonicalReference": "@alloy-js/csharp!Parameter:function(1)",
2341
+ "docComment": "",
2342
+ "excerptTokens": [
2343
+ {
2344
+ "kind": "Content",
2345
+ "text": "export declare function Parameter(props: "
2346
+ },
2347
+ {
2348
+ "kind": "Reference",
2349
+ "text": "ParameterProps",
2350
+ "canonicalReference": "@alloy-js/csharp!ParameterProps:interface"
2351
+ },
2352
+ {
2353
+ "kind": "Content",
2354
+ "text": "): "
2355
+ },
2356
+ {
2357
+ "kind": "Content",
2358
+ "text": "any"
2359
+ },
2360
+ {
2361
+ "kind": "Content",
2362
+ "text": ";"
2363
+ }
2364
+ ],
2365
+ "fileUrlPath": "src/components/Parameters.tsx",
2366
+ "returnTypeTokenRange": {
2367
+ "startIndex": 3,
2368
+ "endIndex": 4
2369
+ },
2370
+ "releaseTag": "Public",
2371
+ "overloadIndex": 1,
2372
+ "parameters": [
2373
+ {
2374
+ "parameterName": "props",
2375
+ "parameterTypeTokenRange": {
2376
+ "startIndex": 1,
2377
+ "endIndex": 2
2378
+ },
2379
+ "isOptional": false
2380
+ }
2381
+ ],
2382
+ "name": "Parameter"
2383
+ },
2384
+ {
2385
+ "kind": "Interface",
2386
+ "canonicalReference": "@alloy-js/csharp!ParameterProps:interface",
2387
+ "docComment": "",
2388
+ "excerptTokens": [
2389
+ {
2390
+ "kind": "Content",
2391
+ "text": "export interface ParameterProps "
2392
+ }
2393
+ ],
2394
+ "fileUrlPath": "src/components/Parameters.tsx",
2395
+ "releaseTag": "Public",
2396
+ "name": "ParameterProps",
2397
+ "preserveMemberOrder": false,
2398
+ "members": [
2399
+ {
2400
+ "kind": "PropertySignature",
2401
+ "canonicalReference": "@alloy-js/csharp!ParameterProps#name:member",
2402
+ "docComment": "",
2403
+ "excerptTokens": [
2404
+ {
2405
+ "kind": "Content",
2406
+ "text": "name: "
2407
+ },
2408
+ {
2409
+ "kind": "Content",
2410
+ "text": "string"
2411
+ },
2412
+ {
2413
+ "kind": "Content",
2414
+ "text": ";"
2415
+ }
2416
+ ],
2417
+ "isReadonly": false,
2418
+ "isOptional": false,
2419
+ "releaseTag": "Public",
2420
+ "name": "name",
2421
+ "propertyTypeTokenRange": {
2422
+ "startIndex": 1,
2423
+ "endIndex": 2
2424
+ }
2425
+ },
2426
+ {
2427
+ "kind": "PropertySignature",
2428
+ "canonicalReference": "@alloy-js/csharp!ParameterProps#refkey:member",
2429
+ "docComment": "",
2430
+ "excerptTokens": [
2431
+ {
2432
+ "kind": "Content",
2433
+ "text": "refkey?: "
2434
+ },
2435
+ {
2436
+ "kind": "Reference",
2437
+ "text": "core.Refkey",
2438
+ "canonicalReference": "@alloy-js/core!Refkey:type"
2439
+ },
2440
+ {
2441
+ "kind": "Content",
2442
+ "text": ";"
2443
+ }
2444
+ ],
2445
+ "isReadonly": false,
2446
+ "isOptional": true,
2447
+ "releaseTag": "Public",
2448
+ "name": "refkey",
2449
+ "propertyTypeTokenRange": {
2450
+ "startIndex": 1,
2451
+ "endIndex": 2
2452
+ }
2453
+ },
2454
+ {
2455
+ "kind": "PropertySignature",
2456
+ "canonicalReference": "@alloy-js/csharp!ParameterProps#symbol:member",
2457
+ "docComment": "",
2458
+ "excerptTokens": [
2459
+ {
2460
+ "kind": "Content",
2461
+ "text": "symbol?: "
2462
+ },
2463
+ {
2464
+ "kind": "Reference",
2465
+ "text": "core.OutputSymbol",
2466
+ "canonicalReference": "@alloy-js/core!OutputSymbol:interface"
2467
+ },
2468
+ {
2469
+ "kind": "Content",
2470
+ "text": ";"
2471
+ }
2472
+ ],
2473
+ "isReadonly": false,
2474
+ "isOptional": true,
2475
+ "releaseTag": "Public",
2476
+ "name": "symbol",
2477
+ "propertyTypeTokenRange": {
2478
+ "startIndex": 1,
2479
+ "endIndex": 2
2480
+ }
2481
+ },
2482
+ {
2483
+ "kind": "PropertySignature",
2484
+ "canonicalReference": "@alloy-js/csharp!ParameterProps#type:member",
2485
+ "docComment": "",
2486
+ "excerptTokens": [
2487
+ {
2488
+ "kind": "Content",
2489
+ "text": "type: "
2490
+ },
2491
+ {
2492
+ "kind": "Reference",
2493
+ "text": "core.Children",
2494
+ "canonicalReference": "@alloy-js/core!Children:type"
2495
+ },
2496
+ {
2497
+ "kind": "Content",
2498
+ "text": ";"
2499
+ }
2500
+ ],
2501
+ "isReadonly": false,
2502
+ "isOptional": false,
2503
+ "releaseTag": "Public",
2504
+ "name": "type",
2505
+ "propertyTypeTokenRange": {
2506
+ "startIndex": 1,
2507
+ "endIndex": 2
2508
+ }
2509
+ }
2510
+ ],
2511
+ "extendsTokenRanges": []
2512
+ },
2513
+ {
2514
+ "kind": "Function",
2515
+ "canonicalReference": "@alloy-js/csharp!Parameters_2:function(1)",
2516
+ "docComment": "",
2517
+ "excerptTokens": [
2518
+ {
2519
+ "kind": "Content",
2520
+ "text": "export declare function Parameters(props: "
2521
+ },
2522
+ {
2523
+ "kind": "Reference",
2524
+ "text": "ParametersProps",
2525
+ "canonicalReference": "@alloy-js/csharp!ParametersProps:interface"
2526
+ },
2527
+ {
2528
+ "kind": "Content",
2529
+ "text": "): "
2530
+ },
2531
+ {
2532
+ "kind": "Reference",
2533
+ "text": "Array",
2534
+ "canonicalReference": "!Array:interface"
2535
+ },
2536
+ {
2537
+ "kind": "Content",
2538
+ "text": "<"
2539
+ },
2540
+ {
2541
+ "kind": "Reference",
2542
+ "text": "core.Child",
2543
+ "canonicalReference": "@alloy-js/core!Child:type"
2544
+ },
2545
+ {
2546
+ "kind": "Content",
2547
+ "text": " | string>"
2548
+ },
2549
+ {
2550
+ "kind": "Content",
2551
+ "text": ";"
2552
+ }
2553
+ ],
2554
+ "fileUrlPath": "src/components/Parameters.tsx",
2555
+ "returnTypeTokenRange": {
2556
+ "startIndex": 3,
2557
+ "endIndex": 7
2558
+ },
2559
+ "releaseTag": "Public",
2560
+ "overloadIndex": 1,
2561
+ "parameters": [
2562
+ {
2563
+ "parameterName": "props",
2564
+ "parameterTypeTokenRange": {
2565
+ "startIndex": 1,
2566
+ "endIndex": 2
2567
+ },
2568
+ "isOptional": false
2569
+ }
2570
+ ],
2571
+ "name": "Parameters_2"
2572
+ },
2573
+ {
2574
+ "kind": "Interface",
2575
+ "canonicalReference": "@alloy-js/csharp!ParametersProps:interface",
2576
+ "docComment": "",
2577
+ "excerptTokens": [
2578
+ {
2579
+ "kind": "Content",
2580
+ "text": "export interface ParametersProps "
2581
+ }
2582
+ ],
2583
+ "fileUrlPath": "src/components/Parameters.tsx",
2584
+ "releaseTag": "Public",
2585
+ "name": "ParametersProps",
2586
+ "preserveMemberOrder": false,
2587
+ "members": [
2588
+ {
2589
+ "kind": "PropertySignature",
2590
+ "canonicalReference": "@alloy-js/csharp!ParametersProps#parameters:member",
2591
+ "docComment": "",
2592
+ "excerptTokens": [
2593
+ {
2594
+ "kind": "Content",
2595
+ "text": "parameters: "
2596
+ },
2597
+ {
2598
+ "kind": "Reference",
2599
+ "text": "Array",
2600
+ "canonicalReference": "!Array:interface"
2601
+ },
2602
+ {
2603
+ "kind": "Content",
2604
+ "text": "<"
2605
+ },
2606
+ {
2607
+ "kind": "Reference",
2608
+ "text": "ParameterProps",
2609
+ "canonicalReference": "@alloy-js/csharp!ParameterProps:interface"
2610
+ },
2611
+ {
2612
+ "kind": "Content",
2613
+ "text": ">"
2614
+ },
2615
+ {
2616
+ "kind": "Content",
2617
+ "text": ";"
2618
+ }
2619
+ ],
2620
+ "isReadonly": false,
2621
+ "isOptional": false,
2622
+ "releaseTag": "Public",
2623
+ "name": "parameters",
2624
+ "propertyTypeTokenRange": {
2625
+ "startIndex": 1,
2626
+ "endIndex": 5
2627
+ }
2628
+ }
2629
+ ],
2630
+ "extendsTokenRanges": []
2631
+ },
2632
+ {
2633
+ "kind": "Function",
2634
+ "canonicalReference": "@alloy-js/csharp!ProjectDirectory:function(1)",
2635
+ "docComment": "",
2636
+ "excerptTokens": [
2637
+ {
2638
+ "kind": "Content",
2639
+ "text": "export declare function ProjectDirectory(props: "
2640
+ },
2641
+ {
2642
+ "kind": "Reference",
2643
+ "text": "ProjectDirectoryProps",
2644
+ "canonicalReference": "@alloy-js/csharp!ProjectDirectoryProps:interface"
2645
+ },
2646
+ {
2647
+ "kind": "Content",
2648
+ "text": "): "
2649
+ },
2650
+ {
2651
+ "kind": "Content",
2652
+ "text": "any"
2653
+ },
2654
+ {
2655
+ "kind": "Content",
2656
+ "text": ";"
2657
+ }
2658
+ ],
2659
+ "fileUrlPath": "src/components/ProjectDirectory.tsx",
2660
+ "returnTypeTokenRange": {
2661
+ "startIndex": 3,
2662
+ "endIndex": 4
2663
+ },
2664
+ "releaseTag": "Public",
2665
+ "overloadIndex": 1,
2666
+ "parameters": [
2667
+ {
2668
+ "parameterName": "props",
2669
+ "parameterTypeTokenRange": {
2670
+ "startIndex": 1,
2671
+ "endIndex": 2
2672
+ },
2673
+ "isOptional": false
2674
+ }
2675
+ ],
2676
+ "name": "ProjectDirectory"
2677
+ },
2678
+ {
2679
+ "kind": "Interface",
2680
+ "canonicalReference": "@alloy-js/csharp!ProjectDirectoryProps:interface",
2681
+ "docComment": "",
2682
+ "excerptTokens": [
2683
+ {
2684
+ "kind": "Content",
2685
+ "text": "export interface ProjectDirectoryProps "
2686
+ }
2687
+ ],
2688
+ "fileUrlPath": "src/components/ProjectDirectory.tsx",
2689
+ "releaseTag": "Public",
2690
+ "name": "ProjectDirectoryProps",
2691
+ "preserveMemberOrder": false,
2692
+ "members": [
2693
+ {
2694
+ "kind": "PropertySignature",
2695
+ "canonicalReference": "@alloy-js/csharp!ProjectDirectoryProps#children:member",
2696
+ "docComment": "",
2697
+ "excerptTokens": [
2698
+ {
2699
+ "kind": "Content",
2700
+ "text": "children?: "
2701
+ },
2702
+ {
2703
+ "kind": "Reference",
2704
+ "text": "core.Children",
2705
+ "canonicalReference": "@alloy-js/core!Children:type"
2706
+ },
2707
+ {
2708
+ "kind": "Content",
2709
+ "text": ";"
2710
+ }
2711
+ ],
2712
+ "isReadonly": false,
2713
+ "isOptional": true,
2714
+ "releaseTag": "Public",
2715
+ "name": "children",
2716
+ "propertyTypeTokenRange": {
2717
+ "startIndex": 1,
2718
+ "endIndex": 2
2719
+ }
2720
+ },
2721
+ {
2722
+ "kind": "PropertySignature",
2723
+ "canonicalReference": "@alloy-js/csharp!ProjectDirectoryProps#description:member",
2724
+ "docComment": "",
2725
+ "excerptTokens": [
2726
+ {
2727
+ "kind": "Content",
2728
+ "text": "description: "
2729
+ },
2730
+ {
2731
+ "kind": "Content",
2732
+ "text": "string"
2733
+ },
2734
+ {
2735
+ "kind": "Content",
2736
+ "text": ";"
2737
+ }
2738
+ ],
2739
+ "isReadonly": false,
2740
+ "isOptional": false,
2741
+ "releaseTag": "Public",
2742
+ "name": "description",
2743
+ "propertyTypeTokenRange": {
2744
+ "startIndex": 1,
2745
+ "endIndex": 2
2746
+ }
2747
+ },
2748
+ {
2749
+ "kind": "PropertySignature",
2750
+ "canonicalReference": "@alloy-js/csharp!ProjectDirectoryProps#name:member",
2751
+ "docComment": "",
2752
+ "excerptTokens": [
2753
+ {
2754
+ "kind": "Content",
2755
+ "text": "name: "
2756
+ },
2757
+ {
2758
+ "kind": "Content",
2759
+ "text": "string"
2760
+ },
2761
+ {
2762
+ "kind": "Content",
2763
+ "text": ";"
2764
+ }
2765
+ ],
2766
+ "isReadonly": false,
2767
+ "isOptional": false,
2768
+ "releaseTag": "Public",
2769
+ "name": "name",
2770
+ "propertyTypeTokenRange": {
2771
+ "startIndex": 1,
2772
+ "endIndex": 2
2773
+ }
2774
+ },
2775
+ {
2776
+ "kind": "PropertySignature",
2777
+ "canonicalReference": "@alloy-js/csharp!ProjectDirectoryProps#path:member",
2778
+ "docComment": "",
2779
+ "excerptTokens": [
2780
+ {
2781
+ "kind": "Content",
2782
+ "text": "path: "
2783
+ },
2784
+ {
2785
+ "kind": "Content",
2786
+ "text": "string"
2787
+ },
2788
+ {
2789
+ "kind": "Content",
2790
+ "text": ";"
2791
+ }
2792
+ ],
2793
+ "isReadonly": false,
2794
+ "isOptional": false,
2795
+ "releaseTag": "Public",
2796
+ "name": "path",
2797
+ "propertyTypeTokenRange": {
2798
+ "startIndex": 1,
2799
+ "endIndex": 2
2800
+ }
2801
+ },
2802
+ {
2803
+ "kind": "PropertySignature",
2804
+ "canonicalReference": "@alloy-js/csharp!ProjectDirectoryProps#srcDir:member",
2805
+ "docComment": "",
2806
+ "excerptTokens": [
2807
+ {
2808
+ "kind": "Content",
2809
+ "text": "srcDir?: "
2810
+ },
2811
+ {
2812
+ "kind": "Content",
2813
+ "text": "string"
2814
+ },
2815
+ {
2816
+ "kind": "Content",
2817
+ "text": ";"
2818
+ }
2819
+ ],
2820
+ "isReadonly": false,
2821
+ "isOptional": true,
2822
+ "releaseTag": "Public",
2823
+ "name": "srcDir",
2824
+ "propertyTypeTokenRange": {
2825
+ "startIndex": 1,
2826
+ "endIndex": 2
2827
+ }
2828
+ },
2829
+ {
2830
+ "kind": "PropertySignature",
2831
+ "canonicalReference": "@alloy-js/csharp!ProjectDirectoryProps#targetFrameworkMoniker:member",
2832
+ "docComment": "",
2833
+ "excerptTokens": [
2834
+ {
2835
+ "kind": "Content",
2836
+ "text": "targetFrameworkMoniker?: "
2837
+ },
2838
+ {
2839
+ "kind": "Content",
2840
+ "text": "string"
2841
+ },
2842
+ {
2843
+ "kind": "Content",
2844
+ "text": ";"
2845
+ }
2846
+ ],
2847
+ "isReadonly": false,
2848
+ "isOptional": true,
2849
+ "releaseTag": "Public",
2850
+ "name": "targetFrameworkMoniker",
2851
+ "propertyTypeTokenRange": {
2852
+ "startIndex": 1,
2853
+ "endIndex": 2
2854
+ }
2855
+ },
2856
+ {
2857
+ "kind": "PropertySignature",
2858
+ "canonicalReference": "@alloy-js/csharp!ProjectDirectoryProps#version:member",
2859
+ "docComment": "",
2860
+ "excerptTokens": [
2861
+ {
2862
+ "kind": "Content",
2863
+ "text": "version: "
2864
+ },
2865
+ {
2866
+ "kind": "Content",
2867
+ "text": "string"
2868
+ },
2869
+ {
2870
+ "kind": "Content",
2871
+ "text": ";"
2872
+ }
2873
+ ],
2874
+ "isReadonly": false,
2875
+ "isOptional": false,
2876
+ "releaseTag": "Public",
2877
+ "name": "version",
2878
+ "propertyTypeTokenRange": {
2879
+ "startIndex": 1,
2880
+ "endIndex": 2
2881
+ }
2882
+ }
2883
+ ],
2884
+ "extendsTokenRanges": []
2885
+ },
2886
+ {
2887
+ "kind": "Function",
2888
+ "canonicalReference": "@alloy-js/csharp!ref:function(1)",
2889
+ "docComment": "",
2890
+ "excerptTokens": [
2891
+ {
2892
+ "kind": "Content",
2893
+ "text": "export declare function ref(refkey: "
2894
+ },
2895
+ {
2896
+ "kind": "Reference",
2897
+ "text": "core.Refkey",
2898
+ "canonicalReference": "@alloy-js/core!Refkey:type"
2899
+ },
2900
+ {
2901
+ "kind": "Content",
2902
+ "text": "): "
2903
+ },
2904
+ {
2905
+ "kind": "Content",
2906
+ "text": "() => string"
2907
+ },
2908
+ {
2909
+ "kind": "Content",
2910
+ "text": ";"
2911
+ }
2912
+ ],
2913
+ "fileUrlPath": "src/symbols/reference.ts",
2914
+ "returnTypeTokenRange": {
2915
+ "startIndex": 3,
2916
+ "endIndex": 4
2917
+ },
2918
+ "releaseTag": "Public",
2919
+ "overloadIndex": 1,
2920
+ "parameters": [
2921
+ {
2922
+ "parameterName": "refkey",
2923
+ "parameterTypeTokenRange": {
2924
+ "startIndex": 1,
2925
+ "endIndex": 2
2926
+ },
2927
+ "isOptional": false
2928
+ }
2929
+ ],
2930
+ "name": "ref"
2931
+ },
2932
+ {
2933
+ "kind": "Function",
2934
+ "canonicalReference": "@alloy-js/csharp!Reference:function(1)",
2935
+ "docComment": "",
2936
+ "excerptTokens": [
2937
+ {
2938
+ "kind": "Content",
2939
+ "text": "export declare function Reference({ refkey }: "
2940
+ },
2941
+ {
2942
+ "kind": "Reference",
2943
+ "text": "ReferenceProps",
2944
+ "canonicalReference": "@alloy-js/csharp!ReferenceProps:interface"
2945
+ },
2946
+ {
2947
+ "kind": "Content",
2948
+ "text": "): "
2949
+ },
2950
+ {
2951
+ "kind": "Content",
2952
+ "text": "any"
2953
+ },
2954
+ {
2955
+ "kind": "Content",
2956
+ "text": ";"
2957
+ }
2958
+ ],
2959
+ "fileUrlPath": "src/components/Reference.tsx",
2960
+ "returnTypeTokenRange": {
2961
+ "startIndex": 3,
2962
+ "endIndex": 4
2963
+ },
2964
+ "releaseTag": "Public",
2965
+ "overloadIndex": 1,
2966
+ "parameters": [
2967
+ {
2968
+ "parameterName": "{ refkey }",
2969
+ "parameterTypeTokenRange": {
2970
+ "startIndex": 1,
2971
+ "endIndex": 2
2972
+ },
2973
+ "isOptional": false
2974
+ }
2975
+ ],
2976
+ "name": "Reference"
2977
+ },
2978
+ {
2979
+ "kind": "Interface",
2980
+ "canonicalReference": "@alloy-js/csharp!ReferenceProps:interface",
2981
+ "docComment": "",
2982
+ "excerptTokens": [
2983
+ {
2984
+ "kind": "Content",
2985
+ "text": "export interface ReferenceProps "
2986
+ }
2987
+ ],
2988
+ "fileUrlPath": "src/components/Reference.tsx",
2989
+ "releaseTag": "Public",
2990
+ "name": "ReferenceProps",
2991
+ "preserveMemberOrder": false,
2992
+ "members": [
2993
+ {
2994
+ "kind": "PropertySignature",
2995
+ "canonicalReference": "@alloy-js/csharp!ReferenceProps#refkey:member",
2996
+ "docComment": "",
2997
+ "excerptTokens": [
2998
+ {
2999
+ "kind": "Content",
3000
+ "text": "refkey: "
3001
+ },
3002
+ {
3003
+ "kind": "Reference",
3004
+ "text": "core.Refkey",
3005
+ "canonicalReference": "@alloy-js/core!Refkey:type"
3006
+ },
3007
+ {
3008
+ "kind": "Content",
3009
+ "text": ";"
3010
+ }
3011
+ ],
3012
+ "isReadonly": false,
3013
+ "isOptional": false,
3014
+ "releaseTag": "Public",
3015
+ "name": "refkey",
3016
+ "propertyTypeTokenRange": {
3017
+ "startIndex": 1,
3018
+ "endIndex": 2
3019
+ }
3020
+ }
3021
+ ],
3022
+ "extendsTokenRanges": []
3023
+ },
3024
+ {
3025
+ "kind": "Function",
3026
+ "canonicalReference": "@alloy-js/csharp!SourceFile:function(1)",
3027
+ "docComment": "",
3028
+ "excerptTokens": [
3029
+ {
3030
+ "kind": "Content",
3031
+ "text": "export declare function SourceFile(props: "
3032
+ },
3033
+ {
3034
+ "kind": "Reference",
3035
+ "text": "SourceFileProps",
3036
+ "canonicalReference": "@alloy-js/csharp!SourceFileProps:interface"
3037
+ },
3038
+ {
3039
+ "kind": "Content",
3040
+ "text": "): "
3041
+ },
3042
+ {
3043
+ "kind": "Content",
3044
+ "text": "any"
3045
+ },
3046
+ {
3047
+ "kind": "Content",
3048
+ "text": ";"
3049
+ }
3050
+ ],
3051
+ "fileUrlPath": "src/components/SourceFile.tsx",
3052
+ "returnTypeTokenRange": {
3053
+ "startIndex": 3,
3054
+ "endIndex": 4
3055
+ },
3056
+ "releaseTag": "Public",
3057
+ "overloadIndex": 1,
3058
+ "parameters": [
3059
+ {
3060
+ "parameterName": "props",
3061
+ "parameterTypeTokenRange": {
3062
+ "startIndex": 1,
3063
+ "endIndex": 2
3064
+ },
3065
+ "isOptional": false
3066
+ }
3067
+ ],
3068
+ "name": "SourceFile"
3069
+ },
3070
+ {
3071
+ "kind": "Interface",
3072
+ "canonicalReference": "@alloy-js/csharp!SourceFileContext:interface",
3073
+ "docComment": "",
3074
+ "excerptTokens": [
3075
+ {
3076
+ "kind": "Content",
3077
+ "text": "export interface SourceFileContext "
3078
+ }
3079
+ ],
3080
+ "fileUrlPath": "src/components/SourceFile.tsx",
3081
+ "releaseTag": "Public",
3082
+ "name": "SourceFileContext",
3083
+ "preserveMemberOrder": false,
3084
+ "members": [
3085
+ {
3086
+ "kind": "MethodSignature",
3087
+ "canonicalReference": "@alloy-js/csharp!SourceFileContext#addUsing:member(1)",
3088
+ "docComment": "",
3089
+ "excerptTokens": [
3090
+ {
3091
+ "kind": "Content",
3092
+ "text": "addUsing(namespace: "
3093
+ },
3094
+ {
3095
+ "kind": "Content",
3096
+ "text": "string"
3097
+ },
3098
+ {
3099
+ "kind": "Content",
3100
+ "text": "): "
3101
+ },
3102
+ {
3103
+ "kind": "Content",
3104
+ "text": "void"
3105
+ },
3106
+ {
3107
+ "kind": "Content",
3108
+ "text": ";"
3109
+ }
3110
+ ],
3111
+ "isOptional": false,
3112
+ "returnTypeTokenRange": {
3113
+ "startIndex": 3,
3114
+ "endIndex": 4
3115
+ },
3116
+ "releaseTag": "Public",
3117
+ "overloadIndex": 1,
3118
+ "parameters": [
3119
+ {
3120
+ "parameterName": "namespace",
3121
+ "parameterTypeTokenRange": {
3122
+ "startIndex": 1,
3123
+ "endIndex": 2
3124
+ },
3125
+ "isOptional": false
3126
+ }
3127
+ ],
3128
+ "name": "addUsing"
3129
+ }
3130
+ ],
3131
+ "extendsTokenRanges": []
3132
+ },
3133
+ {
3134
+ "kind": "Interface",
3135
+ "canonicalReference": "@alloy-js/csharp!SourceFileProps:interface",
3136
+ "docComment": "",
3137
+ "excerptTokens": [
3138
+ {
3139
+ "kind": "Content",
3140
+ "text": "export interface SourceFileProps "
3141
+ }
3142
+ ],
3143
+ "fileUrlPath": "src/components/SourceFile.tsx",
3144
+ "releaseTag": "Public",
3145
+ "name": "SourceFileProps",
3146
+ "preserveMemberOrder": false,
3147
+ "members": [
3148
+ {
3149
+ "kind": "PropertySignature",
3150
+ "canonicalReference": "@alloy-js/csharp!SourceFileProps#children:member",
3151
+ "docComment": "",
3152
+ "excerptTokens": [
3153
+ {
3154
+ "kind": "Content",
3155
+ "text": "children?: "
3156
+ },
3157
+ {
3158
+ "kind": "Reference",
3159
+ "text": "core.Children",
3160
+ "canonicalReference": "@alloy-js/core!Children:type"
3161
+ },
3162
+ {
3163
+ "kind": "Content",
3164
+ "text": ";"
3165
+ }
3166
+ ],
3167
+ "isReadonly": false,
3168
+ "isOptional": true,
3169
+ "releaseTag": "Public",
3170
+ "name": "children",
3171
+ "propertyTypeTokenRange": {
3172
+ "startIndex": 1,
3173
+ "endIndex": 2
3174
+ }
3175
+ },
3176
+ {
3177
+ "kind": "PropertySignature",
3178
+ "canonicalReference": "@alloy-js/csharp!SourceFileProps#path:member",
3179
+ "docComment": "",
3180
+ "excerptTokens": [
3181
+ {
3182
+ "kind": "Content",
3183
+ "text": "path: "
3184
+ },
3185
+ {
3186
+ "kind": "Content",
3187
+ "text": "string"
3188
+ },
3189
+ {
3190
+ "kind": "Content",
3191
+ "text": ";"
3192
+ }
3193
+ ],
3194
+ "isReadonly": false,
3195
+ "isOptional": false,
3196
+ "releaseTag": "Public",
3197
+ "name": "path",
3198
+ "propertyTypeTokenRange": {
3199
+ "startIndex": 1,
3200
+ "endIndex": 2
3201
+ }
3202
+ },
3203
+ {
3204
+ "kind": "PropertySignature",
3205
+ "canonicalReference": "@alloy-js/csharp!SourceFileProps#using:member",
3206
+ "docComment": "",
3207
+ "excerptTokens": [
3208
+ {
3209
+ "kind": "Content",
3210
+ "text": "using?: "
3211
+ },
3212
+ {
3213
+ "kind": "Reference",
3214
+ "text": "Array",
3215
+ "canonicalReference": "!Array:interface"
3216
+ },
3217
+ {
3218
+ "kind": "Content",
3219
+ "text": "<string>"
3220
+ },
3221
+ {
3222
+ "kind": "Content",
3223
+ "text": ";"
3224
+ }
3225
+ ],
3226
+ "isReadonly": false,
3227
+ "isOptional": true,
3228
+ "releaseTag": "Public",
3229
+ "name": "using",
3230
+ "propertyTypeTokenRange": {
3231
+ "startIndex": 1,
3232
+ "endIndex": 3
3233
+ }
3234
+ }
3235
+ ],
3236
+ "extendsTokenRanges": []
3237
+ },
3238
+ {
3239
+ "kind": "Function",
3240
+ "canonicalReference": "@alloy-js/csharp!useCSharpNamePolicy:function(1)",
3241
+ "docComment": "",
3242
+ "excerptTokens": [
3243
+ {
3244
+ "kind": "Content",
3245
+ "text": "export declare function useCSharpNamePolicy(): "
3246
+ },
3247
+ {
3248
+ "kind": "Reference",
3249
+ "text": "core.NamePolicy",
3250
+ "canonicalReference": "@alloy-js/core!NamePolicy:interface"
3251
+ },
3252
+ {
3253
+ "kind": "Content",
3254
+ "text": "<"
3255
+ },
3256
+ {
3257
+ "kind": "Reference",
3258
+ "text": "CSharpElements",
3259
+ "canonicalReference": "@alloy-js/csharp!CSharpElements:type"
3260
+ },
3261
+ {
3262
+ "kind": "Content",
3263
+ "text": ">"
3264
+ },
3265
+ {
3266
+ "kind": "Content",
3267
+ "text": ";"
3268
+ }
3269
+ ],
3270
+ "fileUrlPath": "src/name-policy.ts",
3271
+ "returnTypeTokenRange": {
3272
+ "startIndex": 1,
3273
+ "endIndex": 5
3274
+ },
3275
+ "releaseTag": "Public",
3276
+ "overloadIndex": 1,
3277
+ "parameters": [],
3278
+ "name": "useCSharpNamePolicy"
3279
+ },
3280
+ {
3281
+ "kind": "Function",
3282
+ "canonicalReference": "@alloy-js/csharp!useCSharpScope:function(1)",
3283
+ "docComment": "",
3284
+ "excerptTokens": [
3285
+ {
3286
+ "kind": "Content",
3287
+ "text": "export declare function useCSharpScope(): "
3288
+ },
3289
+ {
3290
+ "kind": "Reference",
3291
+ "text": "CSharpOutputScope",
3292
+ "canonicalReference": "@alloy-js/csharp!CSharpOutputScope:type"
3293
+ },
3294
+ {
3295
+ "kind": "Content",
3296
+ "text": ";"
3297
+ }
3298
+ ],
3299
+ "fileUrlPath": "src/symbols/scopes.ts",
3300
+ "returnTypeTokenRange": {
3301
+ "startIndex": 1,
3302
+ "endIndex": 2
3303
+ },
3304
+ "releaseTag": "Public",
3305
+ "overloadIndex": 1,
3306
+ "parameters": [],
3307
+ "name": "useCSharpScope"
3308
+ },
3309
+ {
3310
+ "kind": "Function",
3311
+ "canonicalReference": "@alloy-js/csharp!useNamespace:function(1)",
3312
+ "docComment": "",
3313
+ "excerptTokens": [
3314
+ {
3315
+ "kind": "Content",
3316
+ "text": "export declare function useNamespace(): "
3317
+ },
3318
+ {
3319
+ "kind": "Reference",
3320
+ "text": "NamespaceContext",
3321
+ "canonicalReference": "@alloy-js/csharp!NamespaceContext:interface"
3322
+ },
3323
+ {
3324
+ "kind": "Content",
3325
+ "text": " | undefined"
3326
+ },
3327
+ {
3328
+ "kind": "Content",
3329
+ "text": ";"
3330
+ }
3331
+ ],
3332
+ "fileUrlPath": "src/components/Namespace.tsx",
3333
+ "returnTypeTokenRange": {
3334
+ "startIndex": 1,
3335
+ "endIndex": 3
3336
+ },
3337
+ "releaseTag": "Public",
3338
+ "overloadIndex": 1,
3339
+ "parameters": [],
3340
+ "name": "useNamespace"
3341
+ },
3342
+ {
3343
+ "kind": "Function",
3344
+ "canonicalReference": "@alloy-js/csharp!useSourceFile:function(1)",
3345
+ "docComment": "",
3346
+ "excerptTokens": [
3347
+ {
3348
+ "kind": "Content",
3349
+ "text": "export declare function useSourceFile(): "
3350
+ },
3351
+ {
3352
+ "kind": "Reference",
3353
+ "text": "SourceFileContext",
3354
+ "canonicalReference": "@alloy-js/csharp!SourceFileContext:interface"
3355
+ },
3356
+ {
3357
+ "kind": "Content",
3358
+ "text": " | undefined"
3359
+ },
3360
+ {
3361
+ "kind": "Content",
3362
+ "text": ";"
3363
+ }
3364
+ ],
3365
+ "fileUrlPath": "src/components/SourceFile.tsx",
3366
+ "returnTypeTokenRange": {
3367
+ "startIndex": 1,
3368
+ "endIndex": 3
3369
+ },
3370
+ "releaseTag": "Public",
3371
+ "overloadIndex": 1,
3372
+ "parameters": [],
3373
+ "name": "useSourceFile"
3374
+ },
3375
+ {
3376
+ "kind": "Function",
3377
+ "canonicalReference": "@alloy-js/csharp!UsingDirective:function(1)",
3378
+ "docComment": "",
3379
+ "excerptTokens": [
3380
+ {
3381
+ "kind": "Content",
3382
+ "text": "export declare function UsingDirective(props: "
3383
+ },
3384
+ {
3385
+ "kind": "Reference",
3386
+ "text": "UsingDirectiveProps",
3387
+ "canonicalReference": "@alloy-js/csharp!UsingDirectiveProps:interface"
3388
+ },
3389
+ {
3390
+ "kind": "Content",
3391
+ "text": "): "
3392
+ },
3393
+ {
3394
+ "kind": "Content",
3395
+ "text": "() => string"
3396
+ },
3397
+ {
3398
+ "kind": "Content",
3399
+ "text": ";"
3400
+ }
3401
+ ],
3402
+ "fileUrlPath": "src/components/UsingDirective.tsx",
3403
+ "returnTypeTokenRange": {
3404
+ "startIndex": 3,
3405
+ "endIndex": 4
3406
+ },
3407
+ "releaseTag": "Public",
3408
+ "overloadIndex": 1,
3409
+ "parameters": [
3410
+ {
3411
+ "parameterName": "props",
3412
+ "parameterTypeTokenRange": {
3413
+ "startIndex": 1,
3414
+ "endIndex": 2
3415
+ },
3416
+ "isOptional": false
3417
+ }
3418
+ ],
3419
+ "name": "UsingDirective"
3420
+ },
3421
+ {
3422
+ "kind": "Interface",
3423
+ "canonicalReference": "@alloy-js/csharp!UsingDirectiveProps:interface",
3424
+ "docComment": "",
3425
+ "excerptTokens": [
3426
+ {
3427
+ "kind": "Content",
3428
+ "text": "export interface UsingDirectiveProps "
3429
+ }
3430
+ ],
3431
+ "fileUrlPath": "src/components/UsingDirective.tsx",
3432
+ "releaseTag": "Public",
3433
+ "name": "UsingDirectiveProps",
3434
+ "preserveMemberOrder": false,
3435
+ "members": [
3436
+ {
3437
+ "kind": "PropertySignature",
3438
+ "canonicalReference": "@alloy-js/csharp!UsingDirectiveProps#namespaces:member",
3439
+ "docComment": "",
3440
+ "excerptTokens": [
3441
+ {
3442
+ "kind": "Content",
3443
+ "text": "namespaces: "
3444
+ },
3445
+ {
3446
+ "kind": "Reference",
3447
+ "text": "Array",
3448
+ "canonicalReference": "!Array:interface"
3449
+ },
3450
+ {
3451
+ "kind": "Content",
3452
+ "text": "<string>"
3453
+ },
3454
+ {
3455
+ "kind": "Content",
3456
+ "text": ";"
3457
+ }
3458
+ ],
3459
+ "isReadonly": false,
3460
+ "isOptional": false,
3461
+ "releaseTag": "Public",
3462
+ "name": "namespaces",
3463
+ "propertyTypeTokenRange": {
3464
+ "startIndex": 1,
3465
+ "endIndex": 3
3466
+ }
3467
+ }
3468
+ ],
3469
+ "extendsTokenRanges": []
3470
+ }
3471
+ ]
3472
+ }
3473
+ ]
3474
+ }