@alloy-js/csharp 0.18.0-dev.7 → 0.18.0-dev.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/src/components/ClassDeclaration.d.ts +2 -0
- package/dist/src/components/ClassDeclaration.d.ts.map +1 -1
- package/dist/src/components/ClassDeclaration.js +6 -1
- package/dist/src/components/ClassMethod.d.ts +2 -0
- package/dist/src/components/ClassMethod.d.ts.map +1 -1
- package/dist/src/components/ClassMethod.js +6 -1
- package/dist/src/components/doc/comment.d.ts +70 -0
- package/dist/src/components/doc/comment.d.ts.map +1 -0
- package/dist/src/components/doc/comment.js +88 -0
- package/dist/src/components/doc/comment.test.d.ts +2 -0
- package/dist/src/components/doc/comment.test.d.ts.map +1 -0
- package/dist/src/components/doc/comment.test.js +348 -0
- package/dist/src/components/doc/from-markdown.d.ts +6 -0
- package/dist/src/components/doc/from-markdown.d.ts.map +1 -0
- package/dist/src/components/doc/from-markdown.js +58 -0
- package/dist/src/components/doc/from-markdown.test.d.ts +2 -0
- package/dist/src/components/doc/from-markdown.test.d.ts.map +1 -0
- package/dist/src/components/doc/from-markdown.test.js +83 -0
- package/dist/src/components/index.d.ts +2 -0
- package/dist/src/components/index.d.ts.map +1 -1
- package/dist/src/components/index.js +2 -0
- package/dist/src/components/interface/declaration.d.ts +2 -0
- package/dist/src/components/interface/declaration.d.ts.map +1 -1
- package/dist/src/components/interface/declaration.js +6 -1
- package/dist/src/components/interface/declaration.test.js +13 -0
- package/dist/src/components/interface/method.d.ts +2 -0
- package/dist/src/components/interface/method.d.ts.map +1 -1
- package/dist/src/components/interface/method.js +6 -1
- package/dist/src/components/interface/method.test.js +21 -0
- package/dist/src/components/interface/property.d.ts +2 -0
- package/dist/src/components/interface/property.d.ts.map +1 -1
- package/dist/src/components/interface/property.js +7 -2
- package/dist/src/components/interface/property.test.js +24 -0
- package/dist/test/class-method.test.js +21 -0
- package/dist/test/class.test.js +13 -0
- package/dist/test/vitest.setup.d.ts +2 -0
- package/dist/test/vitest.setup.d.ts.map +1 -0
- package/dist/test/vitest.setup.js +1 -0
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +3 -2
- package/src/components/ClassDeclaration.tsx +4 -0
- package/src/components/ClassMethod.tsx +5 -0
- package/src/components/doc/comment.test.tsx +337 -0
- package/src/components/doc/comment.tsx +152 -0
- package/src/components/doc/from-markdown.test.tsx +103 -0
- package/src/components/doc/from-markdown.tsx +58 -0
- package/src/components/index.ts +2 -0
- package/src/components/interface/declaration.test.tsx +11 -0
- package/src/components/interface/declaration.tsx +5 -0
- package/src/components/interface/method.test.tsx +16 -0
- package/src/components/interface/method.tsx +5 -0
- package/src/components/interface/property.test.tsx +22 -0
- package/src/components/interface/property.tsx +5 -0
- package/temp/api.json +2140 -154
- package/test/class-method.test.tsx +16 -0
- package/test/class.test.tsx +11 -0
- package/test/vitest.setup.ts +1 -0
- package/vitest.config.ts +3 -0
package/temp/api.json
CHANGED
|
@@ -631,6 +631,34 @@
|
|
|
631
631
|
"name": "ClassDeclarationProps",
|
|
632
632
|
"preserveMemberOrder": false,
|
|
633
633
|
"members": [
|
|
634
|
+
{
|
|
635
|
+
"kind": "PropertySignature",
|
|
636
|
+
"canonicalReference": "@alloy-js/csharp!ClassDeclarationProps#doc:member",
|
|
637
|
+
"docComment": "/**\n * Doc comment\n */\n",
|
|
638
|
+
"excerptTokens": [
|
|
639
|
+
{
|
|
640
|
+
"kind": "Content",
|
|
641
|
+
"text": "doc?: "
|
|
642
|
+
},
|
|
643
|
+
{
|
|
644
|
+
"kind": "Reference",
|
|
645
|
+
"text": "core.Children",
|
|
646
|
+
"canonicalReference": "@alloy-js/core!Children:type"
|
|
647
|
+
},
|
|
648
|
+
{
|
|
649
|
+
"kind": "Content",
|
|
650
|
+
"text": ";"
|
|
651
|
+
}
|
|
652
|
+
],
|
|
653
|
+
"isReadonly": false,
|
|
654
|
+
"isOptional": true,
|
|
655
|
+
"releaseTag": "Public",
|
|
656
|
+
"name": "doc",
|
|
657
|
+
"propertyTypeTokenRange": {
|
|
658
|
+
"startIndex": 1,
|
|
659
|
+
"endIndex": 2
|
|
660
|
+
}
|
|
661
|
+
},
|
|
634
662
|
{
|
|
635
663
|
"kind": "PropertySignature",
|
|
636
664
|
"canonicalReference": "@alloy-js/csharp!ClassDeclarationProps#name:member",
|
|
@@ -1166,6 +1194,34 @@
|
|
|
1166
1194
|
"endIndex": 2
|
|
1167
1195
|
}
|
|
1168
1196
|
},
|
|
1197
|
+
{
|
|
1198
|
+
"kind": "PropertySignature",
|
|
1199
|
+
"canonicalReference": "@alloy-js/csharp!ClassMethodProps#doc:member",
|
|
1200
|
+
"docComment": "/**\n * Doc comment\n */\n",
|
|
1201
|
+
"excerptTokens": [
|
|
1202
|
+
{
|
|
1203
|
+
"kind": "Content",
|
|
1204
|
+
"text": "doc?: "
|
|
1205
|
+
},
|
|
1206
|
+
{
|
|
1207
|
+
"kind": "Reference",
|
|
1208
|
+
"text": "Children",
|
|
1209
|
+
"canonicalReference": "@alloy-js/core!Children:type"
|
|
1210
|
+
},
|
|
1211
|
+
{
|
|
1212
|
+
"kind": "Content",
|
|
1213
|
+
"text": ";"
|
|
1214
|
+
}
|
|
1215
|
+
],
|
|
1216
|
+
"isReadonly": false,
|
|
1217
|
+
"isOptional": true,
|
|
1218
|
+
"releaseTag": "Public",
|
|
1219
|
+
"name": "doc",
|
|
1220
|
+
"propertyTypeTokenRange": {
|
|
1221
|
+
"startIndex": 1,
|
|
1222
|
+
"endIndex": 2
|
|
1223
|
+
}
|
|
1224
|
+
},
|
|
1169
1225
|
{
|
|
1170
1226
|
"kind": "PropertySignature",
|
|
1171
1227
|
"canonicalReference": "@alloy-js/csharp!ClassMethodProps#name:member",
|
|
@@ -2065,33 +2121,28 @@
|
|
|
2065
2121
|
},
|
|
2066
2122
|
{
|
|
2067
2123
|
"kind": "Function",
|
|
2068
|
-
"canonicalReference": "@alloy-js/csharp!
|
|
2069
|
-
"docComment": "
|
|
2124
|
+
"canonicalReference": "@alloy-js/csharp!DocC:function(1)",
|
|
2125
|
+
"docComment": "",
|
|
2070
2126
|
"excerptTokens": [
|
|
2071
2127
|
{
|
|
2072
2128
|
"kind": "Content",
|
|
2073
|
-
"text": "
|
|
2129
|
+
"text": "DocC: (props: "
|
|
2074
2130
|
},
|
|
2075
2131
|
{
|
|
2076
2132
|
"kind": "Reference",
|
|
2077
|
-
"text": "
|
|
2078
|
-
"canonicalReference": "@alloy-js/csharp!
|
|
2133
|
+
"text": "DocCommentProps",
|
|
2134
|
+
"canonicalReference": "@alloy-js/csharp!DocCommentProps:interface"
|
|
2079
2135
|
},
|
|
2080
2136
|
{
|
|
2081
2137
|
"kind": "Content",
|
|
2082
|
-
"text": ")
|
|
2083
|
-
},
|
|
2084
|
-
{
|
|
2085
|
-
"kind": "Reference",
|
|
2086
|
-
"text": "core.Children",
|
|
2087
|
-
"canonicalReference": "@alloy-js/core!Children:type"
|
|
2138
|
+
"text": ") => "
|
|
2088
2139
|
},
|
|
2089
2140
|
{
|
|
2090
2141
|
"kind": "Content",
|
|
2091
|
-
"text": "
|
|
2142
|
+
"text": "string"
|
|
2092
2143
|
}
|
|
2093
2144
|
],
|
|
2094
|
-
"fileUrlPath": "src/components/
|
|
2145
|
+
"fileUrlPath": "src/components/doc/comment.tsx",
|
|
2095
2146
|
"returnTypeTokenRange": {
|
|
2096
2147
|
"startIndex": 3,
|
|
2097
2148
|
"endIndex": 4
|
|
@@ -2108,136 +2159,64 @@
|
|
|
2108
2159
|
"isOptional": false
|
|
2109
2160
|
}
|
|
2110
2161
|
],
|
|
2111
|
-
"name": "
|
|
2162
|
+
"name": "DocC"
|
|
2112
2163
|
},
|
|
2113
2164
|
{
|
|
2114
|
-
"kind": "
|
|
2115
|
-
"canonicalReference": "@alloy-js/csharp!
|
|
2165
|
+
"kind": "Function",
|
|
2166
|
+
"canonicalReference": "@alloy-js/csharp!DocCode:function(1)",
|
|
2116
2167
|
"docComment": "",
|
|
2117
2168
|
"excerptTokens": [
|
|
2118
2169
|
{
|
|
2119
2170
|
"kind": "Content",
|
|
2120
|
-
"text": "
|
|
2171
|
+
"text": "DocCode: (props: "
|
|
2121
2172
|
},
|
|
2122
2173
|
{
|
|
2123
2174
|
"kind": "Reference",
|
|
2124
|
-
"text": "
|
|
2125
|
-
"canonicalReference": "@alloy-js/csharp!
|
|
2175
|
+
"text": "DocCommentProps",
|
|
2176
|
+
"canonicalReference": "@alloy-js/csharp!DocCommentProps:interface"
|
|
2126
2177
|
},
|
|
2127
2178
|
{
|
|
2128
2179
|
"kind": "Content",
|
|
2129
|
-
"text": " "
|
|
2180
|
+
"text": ") => "
|
|
2181
|
+
},
|
|
2182
|
+
{
|
|
2183
|
+
"kind": "Reference",
|
|
2184
|
+
"text": "Children",
|
|
2185
|
+
"canonicalReference": "@alloy-js/core!Children:type"
|
|
2130
2186
|
}
|
|
2131
2187
|
],
|
|
2132
|
-
"fileUrlPath": "src/components/
|
|
2188
|
+
"fileUrlPath": "src/components/doc/comment.tsx",
|
|
2189
|
+
"returnTypeTokenRange": {
|
|
2190
|
+
"startIndex": 3,
|
|
2191
|
+
"endIndex": 4
|
|
2192
|
+
},
|
|
2133
2193
|
"releaseTag": "Public",
|
|
2134
|
-
"
|
|
2135
|
-
"
|
|
2136
|
-
"members": [
|
|
2137
|
-
{
|
|
2138
|
-
"kind": "PropertySignature",
|
|
2139
|
-
"canonicalReference": "@alloy-js/csharp!EnumDeclarationProps#children:member",
|
|
2140
|
-
"docComment": "",
|
|
2141
|
-
"excerptTokens": [
|
|
2142
|
-
{
|
|
2143
|
-
"kind": "Content",
|
|
2144
|
-
"text": "children?: "
|
|
2145
|
-
},
|
|
2146
|
-
{
|
|
2147
|
-
"kind": "Reference",
|
|
2148
|
-
"text": "core.Children",
|
|
2149
|
-
"canonicalReference": "@alloy-js/core!Children:type"
|
|
2150
|
-
},
|
|
2151
|
-
{
|
|
2152
|
-
"kind": "Content",
|
|
2153
|
-
"text": ";"
|
|
2154
|
-
}
|
|
2155
|
-
],
|
|
2156
|
-
"isReadonly": false,
|
|
2157
|
-
"isOptional": true,
|
|
2158
|
-
"releaseTag": "Public",
|
|
2159
|
-
"name": "children",
|
|
2160
|
-
"propertyTypeTokenRange": {
|
|
2161
|
-
"startIndex": 1,
|
|
2162
|
-
"endIndex": 2
|
|
2163
|
-
}
|
|
2164
|
-
},
|
|
2165
|
-
{
|
|
2166
|
-
"kind": "PropertySignature",
|
|
2167
|
-
"canonicalReference": "@alloy-js/csharp!EnumDeclarationProps#name:member",
|
|
2168
|
-
"docComment": "",
|
|
2169
|
-
"excerptTokens": [
|
|
2170
|
-
{
|
|
2171
|
-
"kind": "Content",
|
|
2172
|
-
"text": "name: "
|
|
2173
|
-
},
|
|
2174
|
-
{
|
|
2175
|
-
"kind": "Content",
|
|
2176
|
-
"text": "string"
|
|
2177
|
-
},
|
|
2178
|
-
{
|
|
2179
|
-
"kind": "Content",
|
|
2180
|
-
"text": ";"
|
|
2181
|
-
}
|
|
2182
|
-
],
|
|
2183
|
-
"isReadonly": false,
|
|
2184
|
-
"isOptional": false,
|
|
2185
|
-
"releaseTag": "Public",
|
|
2186
|
-
"name": "name",
|
|
2187
|
-
"propertyTypeTokenRange": {
|
|
2188
|
-
"startIndex": 1,
|
|
2189
|
-
"endIndex": 2
|
|
2190
|
-
}
|
|
2191
|
-
},
|
|
2194
|
+
"overloadIndex": 1,
|
|
2195
|
+
"parameters": [
|
|
2192
2196
|
{
|
|
2193
|
-
"
|
|
2194
|
-
"
|
|
2195
|
-
"docComment": "",
|
|
2196
|
-
"excerptTokens": [
|
|
2197
|
-
{
|
|
2198
|
-
"kind": "Content",
|
|
2199
|
-
"text": "refkey?: "
|
|
2200
|
-
},
|
|
2201
|
-
{
|
|
2202
|
-
"kind": "Reference",
|
|
2203
|
-
"text": "core.Refkey",
|
|
2204
|
-
"canonicalReference": "@alloy-js/core!Refkey:type"
|
|
2205
|
-
},
|
|
2206
|
-
{
|
|
2207
|
-
"kind": "Content",
|
|
2208
|
-
"text": ";"
|
|
2209
|
-
}
|
|
2210
|
-
],
|
|
2211
|
-
"isReadonly": false,
|
|
2212
|
-
"isOptional": true,
|
|
2213
|
-
"releaseTag": "Public",
|
|
2214
|
-
"name": "refkey",
|
|
2215
|
-
"propertyTypeTokenRange": {
|
|
2197
|
+
"parameterName": "props",
|
|
2198
|
+
"parameterTypeTokenRange": {
|
|
2216
2199
|
"startIndex": 1,
|
|
2217
2200
|
"endIndex": 2
|
|
2218
|
-
}
|
|
2201
|
+
},
|
|
2202
|
+
"isOptional": false
|
|
2219
2203
|
}
|
|
2220
2204
|
],
|
|
2221
|
-
"
|
|
2222
|
-
{
|
|
2223
|
-
"startIndex": 1,
|
|
2224
|
-
"endIndex": 2
|
|
2225
|
-
}
|
|
2226
|
-
]
|
|
2205
|
+
"name": "DocCode"
|
|
2227
2206
|
},
|
|
2228
2207
|
{
|
|
2229
2208
|
"kind": "Function",
|
|
2230
|
-
"canonicalReference": "@alloy-js/csharp!
|
|
2209
|
+
"canonicalReference": "@alloy-js/csharp!DocComment:function(1)",
|
|
2231
2210
|
"docComment": "",
|
|
2232
2211
|
"excerptTokens": [
|
|
2233
2212
|
{
|
|
2234
2213
|
"kind": "Content",
|
|
2235
|
-
"text": "export declare function
|
|
2214
|
+
"text": "export declare function DocComment(props: "
|
|
2236
2215
|
},
|
|
2237
2216
|
{
|
|
2238
2217
|
"kind": "Reference",
|
|
2239
|
-
"text": "
|
|
2240
|
-
"canonicalReference": "@alloy-js/csharp!
|
|
2218
|
+
"text": "DocCommentProps",
|
|
2219
|
+
"canonicalReference": "@alloy-js/csharp!DocCommentProps:interface"
|
|
2241
2220
|
},
|
|
2242
2221
|
{
|
|
2243
2222
|
"kind": "Content",
|
|
@@ -2245,7 +2224,7 @@
|
|
|
2245
2224
|
},
|
|
2246
2225
|
{
|
|
2247
2226
|
"kind": "Reference",
|
|
2248
|
-
"text": "
|
|
2227
|
+
"text": "Children",
|
|
2249
2228
|
"canonicalReference": "@alloy-js/core!Children:type"
|
|
2250
2229
|
},
|
|
2251
2230
|
{
|
|
@@ -2253,7 +2232,7 @@
|
|
|
2253
2232
|
"text": ";"
|
|
2254
2233
|
}
|
|
2255
2234
|
],
|
|
2256
|
-
"fileUrlPath": "src/components/
|
|
2235
|
+
"fileUrlPath": "src/components/doc/comment.tsx",
|
|
2257
2236
|
"returnTypeTokenRange": {
|
|
2258
2237
|
"startIndex": 3,
|
|
2259
2238
|
"endIndex": 4
|
|
@@ -2270,35 +2249,36 @@
|
|
|
2270
2249
|
"isOptional": false
|
|
2271
2250
|
}
|
|
2272
2251
|
],
|
|
2273
|
-
"name": "
|
|
2252
|
+
"name": "DocComment"
|
|
2274
2253
|
},
|
|
2275
2254
|
{
|
|
2276
2255
|
"kind": "Interface",
|
|
2277
|
-
"canonicalReference": "@alloy-js/csharp!
|
|
2256
|
+
"canonicalReference": "@alloy-js/csharp!DocCommentProps:interface",
|
|
2278
2257
|
"docComment": "",
|
|
2279
2258
|
"excerptTokens": [
|
|
2280
2259
|
{
|
|
2281
2260
|
"kind": "Content",
|
|
2282
|
-
"text": "export interface
|
|
2261
|
+
"text": "export interface DocCommentProps "
|
|
2283
2262
|
}
|
|
2284
2263
|
],
|
|
2285
|
-
"fileUrlPath": "src/components/
|
|
2264
|
+
"fileUrlPath": "src/components/doc/comment.tsx",
|
|
2286
2265
|
"releaseTag": "Public",
|
|
2287
|
-
"name": "
|
|
2266
|
+
"name": "DocCommentProps",
|
|
2288
2267
|
"preserveMemberOrder": false,
|
|
2289
2268
|
"members": [
|
|
2290
2269
|
{
|
|
2291
2270
|
"kind": "PropertySignature",
|
|
2292
|
-
"canonicalReference": "@alloy-js/csharp!
|
|
2271
|
+
"canonicalReference": "@alloy-js/csharp!DocCommentProps#children:member",
|
|
2293
2272
|
"docComment": "",
|
|
2294
2273
|
"excerptTokens": [
|
|
2295
2274
|
{
|
|
2296
2275
|
"kind": "Content",
|
|
2297
|
-
"text": "
|
|
2276
|
+
"text": "children: "
|
|
2298
2277
|
},
|
|
2299
2278
|
{
|
|
2300
|
-
"kind": "
|
|
2301
|
-
"text": "
|
|
2279
|
+
"kind": "Reference",
|
|
2280
|
+
"text": "Children",
|
|
2281
|
+
"canonicalReference": "@alloy-js/core!Children:type"
|
|
2302
2282
|
},
|
|
2303
2283
|
{
|
|
2304
2284
|
"kind": "Content",
|
|
@@ -2308,25 +2288,43 @@
|
|
|
2308
2288
|
"isReadonly": false,
|
|
2309
2289
|
"isOptional": false,
|
|
2310
2290
|
"releaseTag": "Public",
|
|
2311
|
-
"name": "
|
|
2291
|
+
"name": "children",
|
|
2312
2292
|
"propertyTypeTokenRange": {
|
|
2313
2293
|
"startIndex": 1,
|
|
2314
2294
|
"endIndex": 2
|
|
2315
2295
|
}
|
|
2316
|
-
}
|
|
2296
|
+
}
|
|
2297
|
+
],
|
|
2298
|
+
"extendsTokenRanges": []
|
|
2299
|
+
},
|
|
2300
|
+
{
|
|
2301
|
+
"kind": "Interface",
|
|
2302
|
+
"canonicalReference": "@alloy-js/csharp!DocCommentTagProps:interface",
|
|
2303
|
+
"docComment": "",
|
|
2304
|
+
"excerptTokens": [
|
|
2305
|
+
{
|
|
2306
|
+
"kind": "Content",
|
|
2307
|
+
"text": "export interface DocCommentTagProps "
|
|
2308
|
+
}
|
|
2309
|
+
],
|
|
2310
|
+
"fileUrlPath": "src/components/doc/comment.tsx",
|
|
2311
|
+
"releaseTag": "Public",
|
|
2312
|
+
"name": "DocCommentTagProps",
|
|
2313
|
+
"preserveMemberOrder": false,
|
|
2314
|
+
"members": [
|
|
2317
2315
|
{
|
|
2318
2316
|
"kind": "PropertySignature",
|
|
2319
|
-
"canonicalReference": "@alloy-js/csharp!
|
|
2317
|
+
"canonicalReference": "@alloy-js/csharp!DocCommentTagProps#children:member",
|
|
2320
2318
|
"docComment": "",
|
|
2321
2319
|
"excerptTokens": [
|
|
2322
2320
|
{
|
|
2323
2321
|
"kind": "Content",
|
|
2324
|
-
"text": "
|
|
2322
|
+
"text": "children: "
|
|
2325
2323
|
},
|
|
2326
2324
|
{
|
|
2327
2325
|
"kind": "Reference",
|
|
2328
|
-
"text": "
|
|
2329
|
-
"canonicalReference": "@alloy-js/core!
|
|
2326
|
+
"text": "Children",
|
|
2327
|
+
"canonicalReference": "@alloy-js/core!Children:type"
|
|
2330
2328
|
},
|
|
2331
2329
|
{
|
|
2332
2330
|
"kind": "Content",
|
|
@@ -2334,9 +2332,9 @@
|
|
|
2334
2332
|
}
|
|
2335
2333
|
],
|
|
2336
2334
|
"isReadonly": false,
|
|
2337
|
-
"isOptional":
|
|
2335
|
+
"isOptional": false,
|
|
2338
2336
|
"releaseTag": "Public",
|
|
2339
|
-
"name": "
|
|
2337
|
+
"name": "children",
|
|
2340
2338
|
"propertyTypeTokenRange": {
|
|
2341
2339
|
"startIndex": 1,
|
|
2342
2340
|
"endIndex": 2
|
|
@@ -2347,28 +2345,29 @@
|
|
|
2347
2345
|
},
|
|
2348
2346
|
{
|
|
2349
2347
|
"kind": "Function",
|
|
2350
|
-
"canonicalReference": "@alloy-js/csharp!
|
|
2348
|
+
"canonicalReference": "@alloy-js/csharp!DocDescription:function(1)",
|
|
2351
2349
|
"docComment": "",
|
|
2352
2350
|
"excerptTokens": [
|
|
2353
2351
|
{
|
|
2354
2352
|
"kind": "Content",
|
|
2355
|
-
"text": "
|
|
2353
|
+
"text": "DocDescription: (props: "
|
|
2356
2354
|
},
|
|
2357
2355
|
{
|
|
2358
2356
|
"kind": "Reference",
|
|
2359
|
-
"text": "
|
|
2360
|
-
"canonicalReference": "@alloy-js/csharp!
|
|
2357
|
+
"text": "DocCommentProps",
|
|
2358
|
+
"canonicalReference": "@alloy-js/csharp!DocCommentProps:interface"
|
|
2361
2359
|
},
|
|
2362
2360
|
{
|
|
2363
2361
|
"kind": "Content",
|
|
2364
2362
|
"text": ") => "
|
|
2365
2363
|
},
|
|
2366
2364
|
{
|
|
2367
|
-
"kind": "
|
|
2368
|
-
"text": "
|
|
2365
|
+
"kind": "Reference",
|
|
2366
|
+
"text": "Children",
|
|
2367
|
+
"canonicalReference": "@alloy-js/core!Children:type"
|
|
2369
2368
|
}
|
|
2370
2369
|
],
|
|
2371
|
-
"fileUrlPath": "src/
|
|
2370
|
+
"fileUrlPath": "src/components/doc/comment.tsx",
|
|
2372
2371
|
"returnTypeTokenRange": {
|
|
2373
2372
|
"startIndex": 3,
|
|
2374
2373
|
"endIndex": 4
|
|
@@ -2377,7 +2376,7 @@
|
|
|
2377
2376
|
"overloadIndex": 1,
|
|
2378
2377
|
"parameters": [
|
|
2379
2378
|
{
|
|
2380
|
-
"parameterName": "
|
|
2379
|
+
"parameterName": "props",
|
|
2381
2380
|
"parameterTypeTokenRange": {
|
|
2382
2381
|
"startIndex": 1,
|
|
2383
2382
|
"endIndex": 2
|
|
@@ -2385,35 +2384,33 @@
|
|
|
2385
2384
|
"isOptional": false
|
|
2386
2385
|
}
|
|
2387
2386
|
],
|
|
2388
|
-
"name": "
|
|
2387
|
+
"name": "DocDescription"
|
|
2389
2388
|
},
|
|
2390
2389
|
{
|
|
2391
2390
|
"kind": "Function",
|
|
2392
|
-
"canonicalReference": "@alloy-js/csharp!
|
|
2391
|
+
"canonicalReference": "@alloy-js/csharp!DocExample:function(1)",
|
|
2393
2392
|
"docComment": "",
|
|
2394
2393
|
"excerptTokens": [
|
|
2395
2394
|
{
|
|
2396
2395
|
"kind": "Content",
|
|
2397
|
-
"text": "
|
|
2398
|
-
},
|
|
2399
|
-
{
|
|
2400
|
-
"kind": "Content",
|
|
2401
|
-
"text": "boolean"
|
|
2396
|
+
"text": "DocExample: (props: "
|
|
2402
2397
|
},
|
|
2403
2398
|
{
|
|
2404
|
-
"kind": "
|
|
2405
|
-
"text": "
|
|
2399
|
+
"kind": "Reference",
|
|
2400
|
+
"text": "DocCommentProps",
|
|
2401
|
+
"canonicalReference": "@alloy-js/csharp!DocCommentProps:interface"
|
|
2406
2402
|
},
|
|
2407
2403
|
{
|
|
2408
2404
|
"kind": "Content",
|
|
2409
|
-
"text": "
|
|
2405
|
+
"text": ") => "
|
|
2410
2406
|
},
|
|
2411
2407
|
{
|
|
2412
|
-
"kind": "
|
|
2413
|
-
"text": "
|
|
2408
|
+
"kind": "Reference",
|
|
2409
|
+
"text": "Children",
|
|
2410
|
+
"canonicalReference": "@alloy-js/core!Children:type"
|
|
2414
2411
|
}
|
|
2415
2412
|
],
|
|
2416
|
-
"fileUrlPath": "src/
|
|
2413
|
+
"fileUrlPath": "src/components/doc/comment.tsx",
|
|
2417
2414
|
"returnTypeTokenRange": {
|
|
2418
2415
|
"startIndex": 3,
|
|
2419
2416
|
"endIndex": 4
|
|
@@ -2422,7 +2419,1827 @@
|
|
|
2422
2419
|
"overloadIndex": 1,
|
|
2423
2420
|
"parameters": [
|
|
2424
2421
|
{
|
|
2425
|
-
"parameterName": "
|
|
2422
|
+
"parameterName": "props",
|
|
2423
|
+
"parameterTypeTokenRange": {
|
|
2424
|
+
"startIndex": 1,
|
|
2425
|
+
"endIndex": 2
|
|
2426
|
+
},
|
|
2427
|
+
"isOptional": false
|
|
2428
|
+
}
|
|
2429
|
+
],
|
|
2430
|
+
"name": "DocExample"
|
|
2431
|
+
},
|
|
2432
|
+
{
|
|
2433
|
+
"kind": "Function",
|
|
2434
|
+
"canonicalReference": "@alloy-js/csharp!DocException:function(1)",
|
|
2435
|
+
"docComment": "",
|
|
2436
|
+
"excerptTokens": [
|
|
2437
|
+
{
|
|
2438
|
+
"kind": "Content",
|
|
2439
|
+
"text": "DocException: (props: "
|
|
2440
|
+
},
|
|
2441
|
+
{
|
|
2442
|
+
"kind": "Reference",
|
|
2443
|
+
"text": "DocCommentProps",
|
|
2444
|
+
"canonicalReference": "@alloy-js/csharp!DocCommentProps:interface"
|
|
2445
|
+
},
|
|
2446
|
+
{
|
|
2447
|
+
"kind": "Content",
|
|
2448
|
+
"text": ") => "
|
|
2449
|
+
},
|
|
2450
|
+
{
|
|
2451
|
+
"kind": "Reference",
|
|
2452
|
+
"text": "Children",
|
|
2453
|
+
"canonicalReference": "@alloy-js/core!Children:type"
|
|
2454
|
+
}
|
|
2455
|
+
],
|
|
2456
|
+
"fileUrlPath": "src/components/doc/comment.tsx",
|
|
2457
|
+
"returnTypeTokenRange": {
|
|
2458
|
+
"startIndex": 3,
|
|
2459
|
+
"endIndex": 4
|
|
2460
|
+
},
|
|
2461
|
+
"releaseTag": "Public",
|
|
2462
|
+
"overloadIndex": 1,
|
|
2463
|
+
"parameters": [
|
|
2464
|
+
{
|
|
2465
|
+
"parameterName": "props",
|
|
2466
|
+
"parameterTypeTokenRange": {
|
|
2467
|
+
"startIndex": 1,
|
|
2468
|
+
"endIndex": 2
|
|
2469
|
+
},
|
|
2470
|
+
"isOptional": false
|
|
2471
|
+
}
|
|
2472
|
+
],
|
|
2473
|
+
"name": "DocException"
|
|
2474
|
+
},
|
|
2475
|
+
{
|
|
2476
|
+
"kind": "Function",
|
|
2477
|
+
"canonicalReference": "@alloy-js/csharp!DocFromMarkdown:function(1)",
|
|
2478
|
+
"docComment": "/**\n * Convert markdown to a Csharp doc comment\n */\n",
|
|
2479
|
+
"excerptTokens": [
|
|
2480
|
+
{
|
|
2481
|
+
"kind": "Content",
|
|
2482
|
+
"text": "export declare function DocFromMarkdown(props: "
|
|
2483
|
+
},
|
|
2484
|
+
{
|
|
2485
|
+
"kind": "Reference",
|
|
2486
|
+
"text": "DocFromMarkdownProps",
|
|
2487
|
+
"canonicalReference": "@alloy-js/csharp!DocFromMarkdownProps:interface"
|
|
2488
|
+
},
|
|
2489
|
+
{
|
|
2490
|
+
"kind": "Content",
|
|
2491
|
+
"text": "): "
|
|
2492
|
+
},
|
|
2493
|
+
{
|
|
2494
|
+
"kind": "Content",
|
|
2495
|
+
"text": "import(\"@alloy-js/core/jsx-runtime\")."
|
|
2496
|
+
},
|
|
2497
|
+
{
|
|
2498
|
+
"kind": "Reference",
|
|
2499
|
+
"text": "Children",
|
|
2500
|
+
"canonicalReference": "@alloy-js/core!Children:type"
|
|
2501
|
+
},
|
|
2502
|
+
{
|
|
2503
|
+
"kind": "Content",
|
|
2504
|
+
"text": ";"
|
|
2505
|
+
}
|
|
2506
|
+
],
|
|
2507
|
+
"fileUrlPath": "src/components/doc/from-markdown.tsx",
|
|
2508
|
+
"returnTypeTokenRange": {
|
|
2509
|
+
"startIndex": 3,
|
|
2510
|
+
"endIndex": 5
|
|
2511
|
+
},
|
|
2512
|
+
"releaseTag": "Public",
|
|
2513
|
+
"overloadIndex": 1,
|
|
2514
|
+
"parameters": [
|
|
2515
|
+
{
|
|
2516
|
+
"parameterName": "props",
|
|
2517
|
+
"parameterTypeTokenRange": {
|
|
2518
|
+
"startIndex": 1,
|
|
2519
|
+
"endIndex": 2
|
|
2520
|
+
},
|
|
2521
|
+
"isOptional": false
|
|
2522
|
+
}
|
|
2523
|
+
],
|
|
2524
|
+
"name": "DocFromMarkdown"
|
|
2525
|
+
},
|
|
2526
|
+
{
|
|
2527
|
+
"kind": "Interface",
|
|
2528
|
+
"canonicalReference": "@alloy-js/csharp!DocFromMarkdownProps:interface",
|
|
2529
|
+
"docComment": "",
|
|
2530
|
+
"excerptTokens": [
|
|
2531
|
+
{
|
|
2532
|
+
"kind": "Content",
|
|
2533
|
+
"text": "export interface DocFromMarkdownProps "
|
|
2534
|
+
}
|
|
2535
|
+
],
|
|
2536
|
+
"fileUrlPath": "src/components/doc/from-markdown.tsx",
|
|
2537
|
+
"releaseTag": "Public",
|
|
2538
|
+
"name": "DocFromMarkdownProps",
|
|
2539
|
+
"preserveMemberOrder": false,
|
|
2540
|
+
"members": [
|
|
2541
|
+
{
|
|
2542
|
+
"kind": "PropertySignature",
|
|
2543
|
+
"canonicalReference": "@alloy-js/csharp!DocFromMarkdownProps#markdown:member",
|
|
2544
|
+
"docComment": "",
|
|
2545
|
+
"excerptTokens": [
|
|
2546
|
+
{
|
|
2547
|
+
"kind": "Content",
|
|
2548
|
+
"text": "markdown: "
|
|
2549
|
+
},
|
|
2550
|
+
{
|
|
2551
|
+
"kind": "Content",
|
|
2552
|
+
"text": "string"
|
|
2553
|
+
},
|
|
2554
|
+
{
|
|
2555
|
+
"kind": "Content",
|
|
2556
|
+
"text": ";"
|
|
2557
|
+
}
|
|
2558
|
+
],
|
|
2559
|
+
"isReadonly": false,
|
|
2560
|
+
"isOptional": false,
|
|
2561
|
+
"releaseTag": "Public",
|
|
2562
|
+
"name": "markdown",
|
|
2563
|
+
"propertyTypeTokenRange": {
|
|
2564
|
+
"startIndex": 1,
|
|
2565
|
+
"endIndex": 2
|
|
2566
|
+
}
|
|
2567
|
+
}
|
|
2568
|
+
],
|
|
2569
|
+
"extendsTokenRanges": []
|
|
2570
|
+
},
|
|
2571
|
+
{
|
|
2572
|
+
"kind": "Function",
|
|
2573
|
+
"canonicalReference": "@alloy-js/csharp!DocInclude:function(1)",
|
|
2574
|
+
"docComment": "",
|
|
2575
|
+
"excerptTokens": [
|
|
2576
|
+
{
|
|
2577
|
+
"kind": "Content",
|
|
2578
|
+
"text": "DocInclude: (props: "
|
|
2579
|
+
},
|
|
2580
|
+
{
|
|
2581
|
+
"kind": "Reference",
|
|
2582
|
+
"text": "DocIncludeProps",
|
|
2583
|
+
"canonicalReference": "@alloy-js/csharp!DocIncludeProps:interface"
|
|
2584
|
+
},
|
|
2585
|
+
{
|
|
2586
|
+
"kind": "Content",
|
|
2587
|
+
"text": ") => "
|
|
2588
|
+
},
|
|
2589
|
+
{
|
|
2590
|
+
"kind": "Content",
|
|
2591
|
+
"text": "string"
|
|
2592
|
+
}
|
|
2593
|
+
],
|
|
2594
|
+
"fileUrlPath": "src/components/doc/comment.tsx",
|
|
2595
|
+
"returnTypeTokenRange": {
|
|
2596
|
+
"startIndex": 3,
|
|
2597
|
+
"endIndex": 4
|
|
2598
|
+
},
|
|
2599
|
+
"releaseTag": "Public",
|
|
2600
|
+
"overloadIndex": 1,
|
|
2601
|
+
"parameters": [
|
|
2602
|
+
{
|
|
2603
|
+
"parameterName": "props",
|
|
2604
|
+
"parameterTypeTokenRange": {
|
|
2605
|
+
"startIndex": 1,
|
|
2606
|
+
"endIndex": 2
|
|
2607
|
+
},
|
|
2608
|
+
"isOptional": false
|
|
2609
|
+
}
|
|
2610
|
+
],
|
|
2611
|
+
"name": "DocInclude"
|
|
2612
|
+
},
|
|
2613
|
+
{
|
|
2614
|
+
"kind": "Interface",
|
|
2615
|
+
"canonicalReference": "@alloy-js/csharp!DocIncludeProps:interface",
|
|
2616
|
+
"docComment": "",
|
|
2617
|
+
"excerptTokens": [
|
|
2618
|
+
{
|
|
2619
|
+
"kind": "Content",
|
|
2620
|
+
"text": "export interface DocIncludeProps "
|
|
2621
|
+
}
|
|
2622
|
+
],
|
|
2623
|
+
"fileUrlPath": "src/components/doc/comment.tsx",
|
|
2624
|
+
"releaseTag": "Public",
|
|
2625
|
+
"name": "DocIncludeProps",
|
|
2626
|
+
"preserveMemberOrder": false,
|
|
2627
|
+
"members": [
|
|
2628
|
+
{
|
|
2629
|
+
"kind": "PropertySignature",
|
|
2630
|
+
"canonicalReference": "@alloy-js/csharp!DocIncludeProps#file:member",
|
|
2631
|
+
"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",
|
|
2632
|
+
"excerptTokens": [
|
|
2633
|
+
{
|
|
2634
|
+
"kind": "Content",
|
|
2635
|
+
"text": "file: "
|
|
2636
|
+
},
|
|
2637
|
+
{
|
|
2638
|
+
"kind": "Content",
|
|
2639
|
+
"text": "string"
|
|
2640
|
+
},
|
|
2641
|
+
{
|
|
2642
|
+
"kind": "Content",
|
|
2643
|
+
"text": ";"
|
|
2644
|
+
}
|
|
2645
|
+
],
|
|
2646
|
+
"isReadonly": false,
|
|
2647
|
+
"isOptional": false,
|
|
2648
|
+
"releaseTag": "Public",
|
|
2649
|
+
"name": "file",
|
|
2650
|
+
"propertyTypeTokenRange": {
|
|
2651
|
+
"startIndex": 1,
|
|
2652
|
+
"endIndex": 2
|
|
2653
|
+
}
|
|
2654
|
+
},
|
|
2655
|
+
{
|
|
2656
|
+
"kind": "PropertySignature",
|
|
2657
|
+
"canonicalReference": "@alloy-js/csharp!DocIncludeProps#path:member",
|
|
2658
|
+
"docComment": "/**\n * is an XPath expression that selects some of the XML in the external XML file.\n */\n",
|
|
2659
|
+
"excerptTokens": [
|
|
2660
|
+
{
|
|
2661
|
+
"kind": "Content",
|
|
2662
|
+
"text": "path?: "
|
|
2663
|
+
},
|
|
2664
|
+
{
|
|
2665
|
+
"kind": "Content",
|
|
2666
|
+
"text": "string"
|
|
2667
|
+
},
|
|
2668
|
+
{
|
|
2669
|
+
"kind": "Content",
|
|
2670
|
+
"text": ";"
|
|
2671
|
+
}
|
|
2672
|
+
],
|
|
2673
|
+
"isReadonly": false,
|
|
2674
|
+
"isOptional": true,
|
|
2675
|
+
"releaseTag": "Public",
|
|
2676
|
+
"name": "path",
|
|
2677
|
+
"propertyTypeTokenRange": {
|
|
2678
|
+
"startIndex": 1,
|
|
2679
|
+
"endIndex": 2
|
|
2680
|
+
}
|
|
2681
|
+
}
|
|
2682
|
+
],
|
|
2683
|
+
"extendsTokenRanges": []
|
|
2684
|
+
},
|
|
2685
|
+
{
|
|
2686
|
+
"kind": "Function",
|
|
2687
|
+
"canonicalReference": "@alloy-js/csharp!DocList:function(1)",
|
|
2688
|
+
"docComment": "",
|
|
2689
|
+
"excerptTokens": [
|
|
2690
|
+
{
|
|
2691
|
+
"kind": "Content",
|
|
2692
|
+
"text": "export declare function DocList(props: "
|
|
2693
|
+
},
|
|
2694
|
+
{
|
|
2695
|
+
"kind": "Reference",
|
|
2696
|
+
"text": "DocListProps",
|
|
2697
|
+
"canonicalReference": "@alloy-js/csharp!DocListProps:interface"
|
|
2698
|
+
},
|
|
2699
|
+
{
|
|
2700
|
+
"kind": "Content",
|
|
2701
|
+
"text": "): "
|
|
2702
|
+
},
|
|
2703
|
+
{
|
|
2704
|
+
"kind": "Reference",
|
|
2705
|
+
"text": "Children",
|
|
2706
|
+
"canonicalReference": "@alloy-js/core!Children:type"
|
|
2707
|
+
},
|
|
2708
|
+
{
|
|
2709
|
+
"kind": "Content",
|
|
2710
|
+
"text": ";"
|
|
2711
|
+
}
|
|
2712
|
+
],
|
|
2713
|
+
"fileUrlPath": "src/components/doc/comment.tsx",
|
|
2714
|
+
"returnTypeTokenRange": {
|
|
2715
|
+
"startIndex": 3,
|
|
2716
|
+
"endIndex": 4
|
|
2717
|
+
},
|
|
2718
|
+
"releaseTag": "Public",
|
|
2719
|
+
"overloadIndex": 1,
|
|
2720
|
+
"parameters": [
|
|
2721
|
+
{
|
|
2722
|
+
"parameterName": "props",
|
|
2723
|
+
"parameterTypeTokenRange": {
|
|
2724
|
+
"startIndex": 1,
|
|
2725
|
+
"endIndex": 2
|
|
2726
|
+
},
|
|
2727
|
+
"isOptional": false
|
|
2728
|
+
}
|
|
2729
|
+
],
|
|
2730
|
+
"name": "DocList"
|
|
2731
|
+
},
|
|
2732
|
+
{
|
|
2733
|
+
"kind": "Interface",
|
|
2734
|
+
"canonicalReference": "@alloy-js/csharp!DocListProps:interface",
|
|
2735
|
+
"docComment": "",
|
|
2736
|
+
"excerptTokens": [
|
|
2737
|
+
{
|
|
2738
|
+
"kind": "Content",
|
|
2739
|
+
"text": "export interface DocListProps "
|
|
2740
|
+
}
|
|
2741
|
+
],
|
|
2742
|
+
"fileUrlPath": "src/components/doc/comment.tsx",
|
|
2743
|
+
"releaseTag": "Public",
|
|
2744
|
+
"name": "DocListProps",
|
|
2745
|
+
"preserveMemberOrder": false,
|
|
2746
|
+
"members": [
|
|
2747
|
+
{
|
|
2748
|
+
"kind": "PropertySignature",
|
|
2749
|
+
"canonicalReference": "@alloy-js/csharp!DocListProps#items:member",
|
|
2750
|
+
"docComment": "",
|
|
2751
|
+
"excerptTokens": [
|
|
2752
|
+
{
|
|
2753
|
+
"kind": "Content",
|
|
2754
|
+
"text": "items: "
|
|
2755
|
+
},
|
|
2756
|
+
{
|
|
2757
|
+
"kind": "Reference",
|
|
2758
|
+
"text": "Children",
|
|
2759
|
+
"canonicalReference": "@alloy-js/core!Children:type"
|
|
2760
|
+
},
|
|
2761
|
+
{
|
|
2762
|
+
"kind": "Content",
|
|
2763
|
+
"text": "[]"
|
|
2764
|
+
},
|
|
2765
|
+
{
|
|
2766
|
+
"kind": "Content",
|
|
2767
|
+
"text": ";"
|
|
2768
|
+
}
|
|
2769
|
+
],
|
|
2770
|
+
"isReadonly": false,
|
|
2771
|
+
"isOptional": false,
|
|
2772
|
+
"releaseTag": "Public",
|
|
2773
|
+
"name": "items",
|
|
2774
|
+
"propertyTypeTokenRange": {
|
|
2775
|
+
"startIndex": 1,
|
|
2776
|
+
"endIndex": 3
|
|
2777
|
+
}
|
|
2778
|
+
},
|
|
2779
|
+
{
|
|
2780
|
+
"kind": "PropertySignature",
|
|
2781
|
+
"canonicalReference": "@alloy-js/csharp!DocListProps#type:member",
|
|
2782
|
+
"docComment": "",
|
|
2783
|
+
"excerptTokens": [
|
|
2784
|
+
{
|
|
2785
|
+
"kind": "Content",
|
|
2786
|
+
"text": "type?: "
|
|
2787
|
+
},
|
|
2788
|
+
{
|
|
2789
|
+
"kind": "Content",
|
|
2790
|
+
"text": "\"bullet\" | \"number\""
|
|
2791
|
+
},
|
|
2792
|
+
{
|
|
2793
|
+
"kind": "Content",
|
|
2794
|
+
"text": ";"
|
|
2795
|
+
}
|
|
2796
|
+
],
|
|
2797
|
+
"isReadonly": false,
|
|
2798
|
+
"isOptional": true,
|
|
2799
|
+
"releaseTag": "Public",
|
|
2800
|
+
"name": "type",
|
|
2801
|
+
"propertyTypeTokenRange": {
|
|
2802
|
+
"startIndex": 1,
|
|
2803
|
+
"endIndex": 2
|
|
2804
|
+
}
|
|
2805
|
+
}
|
|
2806
|
+
],
|
|
2807
|
+
"extendsTokenRanges": []
|
|
2808
|
+
},
|
|
2809
|
+
{
|
|
2810
|
+
"kind": "Function",
|
|
2811
|
+
"canonicalReference": "@alloy-js/csharp!DocPara:function(1)",
|
|
2812
|
+
"docComment": "",
|
|
2813
|
+
"excerptTokens": [
|
|
2814
|
+
{
|
|
2815
|
+
"kind": "Content",
|
|
2816
|
+
"text": "DocPara: (props: "
|
|
2817
|
+
},
|
|
2818
|
+
{
|
|
2819
|
+
"kind": "Reference",
|
|
2820
|
+
"text": "DocCommentProps",
|
|
2821
|
+
"canonicalReference": "@alloy-js/csharp!DocCommentProps:interface"
|
|
2822
|
+
},
|
|
2823
|
+
{
|
|
2824
|
+
"kind": "Content",
|
|
2825
|
+
"text": ") => "
|
|
2826
|
+
},
|
|
2827
|
+
{
|
|
2828
|
+
"kind": "Reference",
|
|
2829
|
+
"text": "Children",
|
|
2830
|
+
"canonicalReference": "@alloy-js/core!Children:type"
|
|
2831
|
+
}
|
|
2832
|
+
],
|
|
2833
|
+
"fileUrlPath": "src/components/doc/comment.tsx",
|
|
2834
|
+
"returnTypeTokenRange": {
|
|
2835
|
+
"startIndex": 3,
|
|
2836
|
+
"endIndex": 4
|
|
2837
|
+
},
|
|
2838
|
+
"releaseTag": "Public",
|
|
2839
|
+
"overloadIndex": 1,
|
|
2840
|
+
"parameters": [
|
|
2841
|
+
{
|
|
2842
|
+
"parameterName": "props",
|
|
2843
|
+
"parameterTypeTokenRange": {
|
|
2844
|
+
"startIndex": 1,
|
|
2845
|
+
"endIndex": 2
|
|
2846
|
+
},
|
|
2847
|
+
"isOptional": false
|
|
2848
|
+
}
|
|
2849
|
+
],
|
|
2850
|
+
"name": "DocPara"
|
|
2851
|
+
},
|
|
2852
|
+
{
|
|
2853
|
+
"kind": "Function",
|
|
2854
|
+
"canonicalReference": "@alloy-js/csharp!DocParam:function(1)",
|
|
2855
|
+
"docComment": "",
|
|
2856
|
+
"excerptTokens": [
|
|
2857
|
+
{
|
|
2858
|
+
"kind": "Content",
|
|
2859
|
+
"text": "DocParam: (props: "
|
|
2860
|
+
},
|
|
2861
|
+
{
|
|
2862
|
+
"kind": "Reference",
|
|
2863
|
+
"text": "DocParamProps",
|
|
2864
|
+
"canonicalReference": "@alloy-js/csharp!DocParamProps:interface"
|
|
2865
|
+
},
|
|
2866
|
+
{
|
|
2867
|
+
"kind": "Content",
|
|
2868
|
+
"text": ") => "
|
|
2869
|
+
},
|
|
2870
|
+
{
|
|
2871
|
+
"kind": "Reference",
|
|
2872
|
+
"text": "Children",
|
|
2873
|
+
"canonicalReference": "@alloy-js/core!Children:type"
|
|
2874
|
+
}
|
|
2875
|
+
],
|
|
2876
|
+
"fileUrlPath": "src/components/doc/comment.tsx",
|
|
2877
|
+
"returnTypeTokenRange": {
|
|
2878
|
+
"startIndex": 3,
|
|
2879
|
+
"endIndex": 4
|
|
2880
|
+
},
|
|
2881
|
+
"releaseTag": "Public",
|
|
2882
|
+
"overloadIndex": 1,
|
|
2883
|
+
"parameters": [
|
|
2884
|
+
{
|
|
2885
|
+
"parameterName": "props",
|
|
2886
|
+
"parameterTypeTokenRange": {
|
|
2887
|
+
"startIndex": 1,
|
|
2888
|
+
"endIndex": 2
|
|
2889
|
+
},
|
|
2890
|
+
"isOptional": false
|
|
2891
|
+
}
|
|
2892
|
+
],
|
|
2893
|
+
"name": "DocParam"
|
|
2894
|
+
},
|
|
2895
|
+
{
|
|
2896
|
+
"kind": "Interface",
|
|
2897
|
+
"canonicalReference": "@alloy-js/csharp!DocParamProps:interface",
|
|
2898
|
+
"docComment": "",
|
|
2899
|
+
"excerptTokens": [
|
|
2900
|
+
{
|
|
2901
|
+
"kind": "Content",
|
|
2902
|
+
"text": "export interface DocParamProps "
|
|
2903
|
+
}
|
|
2904
|
+
],
|
|
2905
|
+
"fileUrlPath": "src/components/doc/comment.tsx",
|
|
2906
|
+
"releaseTag": "Public",
|
|
2907
|
+
"name": "DocParamProps",
|
|
2908
|
+
"preserveMemberOrder": false,
|
|
2909
|
+
"members": [
|
|
2910
|
+
{
|
|
2911
|
+
"kind": "PropertySignature",
|
|
2912
|
+
"canonicalReference": "@alloy-js/csharp!DocParamProps#children:member",
|
|
2913
|
+
"docComment": "",
|
|
2914
|
+
"excerptTokens": [
|
|
2915
|
+
{
|
|
2916
|
+
"kind": "Content",
|
|
2917
|
+
"text": "children: "
|
|
2918
|
+
},
|
|
2919
|
+
{
|
|
2920
|
+
"kind": "Reference",
|
|
2921
|
+
"text": "Children",
|
|
2922
|
+
"canonicalReference": "@alloy-js/core!Children:type"
|
|
2923
|
+
},
|
|
2924
|
+
{
|
|
2925
|
+
"kind": "Content",
|
|
2926
|
+
"text": ";"
|
|
2927
|
+
}
|
|
2928
|
+
],
|
|
2929
|
+
"isReadonly": false,
|
|
2930
|
+
"isOptional": false,
|
|
2931
|
+
"releaseTag": "Public",
|
|
2932
|
+
"name": "children",
|
|
2933
|
+
"propertyTypeTokenRange": {
|
|
2934
|
+
"startIndex": 1,
|
|
2935
|
+
"endIndex": 2
|
|
2936
|
+
}
|
|
2937
|
+
},
|
|
2938
|
+
{
|
|
2939
|
+
"kind": "PropertySignature",
|
|
2940
|
+
"canonicalReference": "@alloy-js/csharp!DocParamProps#name:member",
|
|
2941
|
+
"docComment": "",
|
|
2942
|
+
"excerptTokens": [
|
|
2943
|
+
{
|
|
2944
|
+
"kind": "Content",
|
|
2945
|
+
"text": "name: "
|
|
2946
|
+
},
|
|
2947
|
+
{
|
|
2948
|
+
"kind": "Content",
|
|
2949
|
+
"text": "string"
|
|
2950
|
+
},
|
|
2951
|
+
{
|
|
2952
|
+
"kind": "Content",
|
|
2953
|
+
"text": ";"
|
|
2954
|
+
}
|
|
2955
|
+
],
|
|
2956
|
+
"isReadonly": false,
|
|
2957
|
+
"isOptional": false,
|
|
2958
|
+
"releaseTag": "Public",
|
|
2959
|
+
"name": "name",
|
|
2960
|
+
"propertyTypeTokenRange": {
|
|
2961
|
+
"startIndex": 1,
|
|
2962
|
+
"endIndex": 2
|
|
2963
|
+
}
|
|
2964
|
+
}
|
|
2965
|
+
],
|
|
2966
|
+
"extendsTokenRanges": []
|
|
2967
|
+
},
|
|
2968
|
+
{
|
|
2969
|
+
"kind": "Function",
|
|
2970
|
+
"canonicalReference": "@alloy-js/csharp!DocParamRef:function(1)",
|
|
2971
|
+
"docComment": "",
|
|
2972
|
+
"excerptTokens": [
|
|
2973
|
+
{
|
|
2974
|
+
"kind": "Content",
|
|
2975
|
+
"text": "DocParamRef: (props: "
|
|
2976
|
+
},
|
|
2977
|
+
{
|
|
2978
|
+
"kind": "Reference",
|
|
2979
|
+
"text": "DocParamRefProps",
|
|
2980
|
+
"canonicalReference": "@alloy-js/csharp!DocParamRefProps:interface"
|
|
2981
|
+
},
|
|
2982
|
+
{
|
|
2983
|
+
"kind": "Content",
|
|
2984
|
+
"text": ") => "
|
|
2985
|
+
},
|
|
2986
|
+
{
|
|
2987
|
+
"kind": "Content",
|
|
2988
|
+
"text": "string"
|
|
2989
|
+
}
|
|
2990
|
+
],
|
|
2991
|
+
"fileUrlPath": "src/components/doc/comment.tsx",
|
|
2992
|
+
"returnTypeTokenRange": {
|
|
2993
|
+
"startIndex": 3,
|
|
2994
|
+
"endIndex": 4
|
|
2995
|
+
},
|
|
2996
|
+
"releaseTag": "Public",
|
|
2997
|
+
"overloadIndex": 1,
|
|
2998
|
+
"parameters": [
|
|
2999
|
+
{
|
|
3000
|
+
"parameterName": "props",
|
|
3001
|
+
"parameterTypeTokenRange": {
|
|
3002
|
+
"startIndex": 1,
|
|
3003
|
+
"endIndex": 2
|
|
3004
|
+
},
|
|
3005
|
+
"isOptional": false
|
|
3006
|
+
}
|
|
3007
|
+
],
|
|
3008
|
+
"name": "DocParamRef"
|
|
3009
|
+
},
|
|
3010
|
+
{
|
|
3011
|
+
"kind": "Interface",
|
|
3012
|
+
"canonicalReference": "@alloy-js/csharp!DocParamRefProps:interface",
|
|
3013
|
+
"docComment": "",
|
|
3014
|
+
"excerptTokens": [
|
|
3015
|
+
{
|
|
3016
|
+
"kind": "Content",
|
|
3017
|
+
"text": "export interface DocParamRefProps "
|
|
3018
|
+
}
|
|
3019
|
+
],
|
|
3020
|
+
"fileUrlPath": "src/components/doc/comment.tsx",
|
|
3021
|
+
"releaseTag": "Public",
|
|
3022
|
+
"name": "DocParamRefProps",
|
|
3023
|
+
"preserveMemberOrder": false,
|
|
3024
|
+
"members": [
|
|
3025
|
+
{
|
|
3026
|
+
"kind": "PropertySignature",
|
|
3027
|
+
"canonicalReference": "@alloy-js/csharp!DocParamRefProps#name:member",
|
|
3028
|
+
"docComment": "",
|
|
3029
|
+
"excerptTokens": [
|
|
3030
|
+
{
|
|
3031
|
+
"kind": "Content",
|
|
3032
|
+
"text": "name: "
|
|
3033
|
+
},
|
|
3034
|
+
{
|
|
3035
|
+
"kind": "Content",
|
|
3036
|
+
"text": "string"
|
|
3037
|
+
},
|
|
3038
|
+
{
|
|
3039
|
+
"kind": "Content",
|
|
3040
|
+
"text": ";"
|
|
3041
|
+
}
|
|
3042
|
+
],
|
|
3043
|
+
"isReadonly": false,
|
|
3044
|
+
"isOptional": false,
|
|
3045
|
+
"releaseTag": "Public",
|
|
3046
|
+
"name": "name",
|
|
3047
|
+
"propertyTypeTokenRange": {
|
|
3048
|
+
"startIndex": 1,
|
|
3049
|
+
"endIndex": 2
|
|
3050
|
+
}
|
|
3051
|
+
}
|
|
3052
|
+
],
|
|
3053
|
+
"extendsTokenRanges": []
|
|
3054
|
+
},
|
|
3055
|
+
{
|
|
3056
|
+
"kind": "Function",
|
|
3057
|
+
"canonicalReference": "@alloy-js/csharp!DocPermission:function(1)",
|
|
3058
|
+
"docComment": "",
|
|
3059
|
+
"excerptTokens": [
|
|
3060
|
+
{
|
|
3061
|
+
"kind": "Content",
|
|
3062
|
+
"text": "DocPermission: (props: "
|
|
3063
|
+
},
|
|
3064
|
+
{
|
|
3065
|
+
"kind": "Reference",
|
|
3066
|
+
"text": "DocCommentProps",
|
|
3067
|
+
"canonicalReference": "@alloy-js/csharp!DocCommentProps:interface"
|
|
3068
|
+
},
|
|
3069
|
+
{
|
|
3070
|
+
"kind": "Content",
|
|
3071
|
+
"text": ") => "
|
|
3072
|
+
},
|
|
3073
|
+
{
|
|
3074
|
+
"kind": "Reference",
|
|
3075
|
+
"text": "Children",
|
|
3076
|
+
"canonicalReference": "@alloy-js/core!Children:type"
|
|
3077
|
+
}
|
|
3078
|
+
],
|
|
3079
|
+
"fileUrlPath": "src/components/doc/comment.tsx",
|
|
3080
|
+
"returnTypeTokenRange": {
|
|
3081
|
+
"startIndex": 3,
|
|
3082
|
+
"endIndex": 4
|
|
3083
|
+
},
|
|
3084
|
+
"releaseTag": "Public",
|
|
3085
|
+
"overloadIndex": 1,
|
|
3086
|
+
"parameters": [
|
|
3087
|
+
{
|
|
3088
|
+
"parameterName": "props",
|
|
3089
|
+
"parameterTypeTokenRange": {
|
|
3090
|
+
"startIndex": 1,
|
|
3091
|
+
"endIndex": 2
|
|
3092
|
+
},
|
|
3093
|
+
"isOptional": false
|
|
3094
|
+
}
|
|
3095
|
+
],
|
|
3096
|
+
"name": "DocPermission"
|
|
3097
|
+
},
|
|
3098
|
+
{
|
|
3099
|
+
"kind": "Function",
|
|
3100
|
+
"canonicalReference": "@alloy-js/csharp!DocRemarks:function(1)",
|
|
3101
|
+
"docComment": "",
|
|
3102
|
+
"excerptTokens": [
|
|
3103
|
+
{
|
|
3104
|
+
"kind": "Content",
|
|
3105
|
+
"text": "DocRemarks: (props: "
|
|
3106
|
+
},
|
|
3107
|
+
{
|
|
3108
|
+
"kind": "Reference",
|
|
3109
|
+
"text": "DocCommentProps",
|
|
3110
|
+
"canonicalReference": "@alloy-js/csharp!DocCommentProps:interface"
|
|
3111
|
+
},
|
|
3112
|
+
{
|
|
3113
|
+
"kind": "Content",
|
|
3114
|
+
"text": ") => "
|
|
3115
|
+
},
|
|
3116
|
+
{
|
|
3117
|
+
"kind": "Reference",
|
|
3118
|
+
"text": "Children",
|
|
3119
|
+
"canonicalReference": "@alloy-js/core!Children:type"
|
|
3120
|
+
}
|
|
3121
|
+
],
|
|
3122
|
+
"fileUrlPath": "src/components/doc/comment.tsx",
|
|
3123
|
+
"returnTypeTokenRange": {
|
|
3124
|
+
"startIndex": 3,
|
|
3125
|
+
"endIndex": 4
|
|
3126
|
+
},
|
|
3127
|
+
"releaseTag": "Public",
|
|
3128
|
+
"overloadIndex": 1,
|
|
3129
|
+
"parameters": [
|
|
3130
|
+
{
|
|
3131
|
+
"parameterName": "props",
|
|
3132
|
+
"parameterTypeTokenRange": {
|
|
3133
|
+
"startIndex": 1,
|
|
3134
|
+
"endIndex": 2
|
|
3135
|
+
},
|
|
3136
|
+
"isOptional": false
|
|
3137
|
+
}
|
|
3138
|
+
],
|
|
3139
|
+
"name": "DocRemarks"
|
|
3140
|
+
},
|
|
3141
|
+
{
|
|
3142
|
+
"kind": "Function",
|
|
3143
|
+
"canonicalReference": "@alloy-js/csharp!DocReturns:function(1)",
|
|
3144
|
+
"docComment": "",
|
|
3145
|
+
"excerptTokens": [
|
|
3146
|
+
{
|
|
3147
|
+
"kind": "Content",
|
|
3148
|
+
"text": "DocReturns: (props: "
|
|
3149
|
+
},
|
|
3150
|
+
{
|
|
3151
|
+
"kind": "Reference",
|
|
3152
|
+
"text": "DocCommentProps",
|
|
3153
|
+
"canonicalReference": "@alloy-js/csharp!DocCommentProps:interface"
|
|
3154
|
+
},
|
|
3155
|
+
{
|
|
3156
|
+
"kind": "Content",
|
|
3157
|
+
"text": ") => "
|
|
3158
|
+
},
|
|
3159
|
+
{
|
|
3160
|
+
"kind": "Reference",
|
|
3161
|
+
"text": "Children",
|
|
3162
|
+
"canonicalReference": "@alloy-js/core!Children:type"
|
|
3163
|
+
}
|
|
3164
|
+
],
|
|
3165
|
+
"fileUrlPath": "src/components/doc/comment.tsx",
|
|
3166
|
+
"returnTypeTokenRange": {
|
|
3167
|
+
"startIndex": 3,
|
|
3168
|
+
"endIndex": 4
|
|
3169
|
+
},
|
|
3170
|
+
"releaseTag": "Public",
|
|
3171
|
+
"overloadIndex": 1,
|
|
3172
|
+
"parameters": [
|
|
3173
|
+
{
|
|
3174
|
+
"parameterName": "props",
|
|
3175
|
+
"parameterTypeTokenRange": {
|
|
3176
|
+
"startIndex": 1,
|
|
3177
|
+
"endIndex": 2
|
|
3178
|
+
},
|
|
3179
|
+
"isOptional": false
|
|
3180
|
+
}
|
|
3181
|
+
],
|
|
3182
|
+
"name": "DocReturns"
|
|
3183
|
+
},
|
|
3184
|
+
{
|
|
3185
|
+
"kind": "Function",
|
|
3186
|
+
"canonicalReference": "@alloy-js/csharp!DocSee:function(1)",
|
|
3187
|
+
"docComment": "",
|
|
3188
|
+
"excerptTokens": [
|
|
3189
|
+
{
|
|
3190
|
+
"kind": "Content",
|
|
3191
|
+
"text": "DocSee: (props: "
|
|
3192
|
+
},
|
|
3193
|
+
{
|
|
3194
|
+
"kind": "Reference",
|
|
3195
|
+
"text": "DocSeeProps",
|
|
3196
|
+
"canonicalReference": "@alloy-js/csharp!DocSeeProps:interface"
|
|
3197
|
+
},
|
|
3198
|
+
{
|
|
3199
|
+
"kind": "Content",
|
|
3200
|
+
"text": ") => "
|
|
3201
|
+
},
|
|
3202
|
+
{
|
|
3203
|
+
"kind": "Reference",
|
|
3204
|
+
"text": "Children",
|
|
3205
|
+
"canonicalReference": "@alloy-js/core!Children:type"
|
|
3206
|
+
}
|
|
3207
|
+
],
|
|
3208
|
+
"fileUrlPath": "src/components/doc/comment.tsx",
|
|
3209
|
+
"returnTypeTokenRange": {
|
|
3210
|
+
"startIndex": 3,
|
|
3211
|
+
"endIndex": 4
|
|
3212
|
+
},
|
|
3213
|
+
"releaseTag": "Public",
|
|
3214
|
+
"overloadIndex": 1,
|
|
3215
|
+
"parameters": [
|
|
3216
|
+
{
|
|
3217
|
+
"parameterName": "props",
|
|
3218
|
+
"parameterTypeTokenRange": {
|
|
3219
|
+
"startIndex": 1,
|
|
3220
|
+
"endIndex": 2
|
|
3221
|
+
},
|
|
3222
|
+
"isOptional": false
|
|
3223
|
+
}
|
|
3224
|
+
],
|
|
3225
|
+
"name": "DocSee"
|
|
3226
|
+
},
|
|
3227
|
+
{
|
|
3228
|
+
"kind": "Function",
|
|
3229
|
+
"canonicalReference": "@alloy-js/csharp!DocSeeAlso:function(1)",
|
|
3230
|
+
"docComment": "",
|
|
3231
|
+
"excerptTokens": [
|
|
3232
|
+
{
|
|
3233
|
+
"kind": "Content",
|
|
3234
|
+
"text": "DocSeeAlso: (props: "
|
|
3235
|
+
},
|
|
3236
|
+
{
|
|
3237
|
+
"kind": "Reference",
|
|
3238
|
+
"text": "DocSeeAlsoProps",
|
|
3239
|
+
"canonicalReference": "@alloy-js/csharp!DocSeeAlsoProps:interface"
|
|
3240
|
+
},
|
|
3241
|
+
{
|
|
3242
|
+
"kind": "Content",
|
|
3243
|
+
"text": ") => "
|
|
3244
|
+
},
|
|
3245
|
+
{
|
|
3246
|
+
"kind": "Reference",
|
|
3247
|
+
"text": "Children",
|
|
3248
|
+
"canonicalReference": "@alloy-js/core!Children:type"
|
|
3249
|
+
}
|
|
3250
|
+
],
|
|
3251
|
+
"fileUrlPath": "src/components/doc/comment.tsx",
|
|
3252
|
+
"returnTypeTokenRange": {
|
|
3253
|
+
"startIndex": 3,
|
|
3254
|
+
"endIndex": 4
|
|
3255
|
+
},
|
|
3256
|
+
"releaseTag": "Public",
|
|
3257
|
+
"overloadIndex": 1,
|
|
3258
|
+
"parameters": [
|
|
3259
|
+
{
|
|
3260
|
+
"parameterName": "props",
|
|
3261
|
+
"parameterTypeTokenRange": {
|
|
3262
|
+
"startIndex": 1,
|
|
3263
|
+
"endIndex": 2
|
|
3264
|
+
},
|
|
3265
|
+
"isOptional": false
|
|
3266
|
+
}
|
|
3267
|
+
],
|
|
3268
|
+
"name": "DocSeeAlso"
|
|
3269
|
+
},
|
|
3270
|
+
{
|
|
3271
|
+
"kind": "Interface",
|
|
3272
|
+
"canonicalReference": "@alloy-js/csharp!DocSeeAlsoProps:interface",
|
|
3273
|
+
"docComment": "",
|
|
3274
|
+
"excerptTokens": [
|
|
3275
|
+
{
|
|
3276
|
+
"kind": "Content",
|
|
3277
|
+
"text": "export interface DocSeeAlsoProps "
|
|
3278
|
+
}
|
|
3279
|
+
],
|
|
3280
|
+
"fileUrlPath": "src/components/doc/comment.tsx",
|
|
3281
|
+
"releaseTag": "Public",
|
|
3282
|
+
"name": "DocSeeAlsoProps",
|
|
3283
|
+
"preserveMemberOrder": false,
|
|
3284
|
+
"members": [
|
|
3285
|
+
{
|
|
3286
|
+
"kind": "PropertySignature",
|
|
3287
|
+
"canonicalReference": "@alloy-js/csharp!DocSeeAlsoProps#children:member",
|
|
3288
|
+
"docComment": "",
|
|
3289
|
+
"excerptTokens": [
|
|
3290
|
+
{
|
|
3291
|
+
"kind": "Content",
|
|
3292
|
+
"text": "children?: "
|
|
3293
|
+
},
|
|
3294
|
+
{
|
|
3295
|
+
"kind": "Reference",
|
|
3296
|
+
"text": "Children",
|
|
3297
|
+
"canonicalReference": "@alloy-js/core!Children:type"
|
|
3298
|
+
},
|
|
3299
|
+
{
|
|
3300
|
+
"kind": "Content",
|
|
3301
|
+
"text": ";"
|
|
3302
|
+
}
|
|
3303
|
+
],
|
|
3304
|
+
"isReadonly": false,
|
|
3305
|
+
"isOptional": true,
|
|
3306
|
+
"releaseTag": "Public",
|
|
3307
|
+
"name": "children",
|
|
3308
|
+
"propertyTypeTokenRange": {
|
|
3309
|
+
"startIndex": 1,
|
|
3310
|
+
"endIndex": 2
|
|
3311
|
+
}
|
|
3312
|
+
},
|
|
3313
|
+
{
|
|
3314
|
+
"kind": "PropertySignature",
|
|
3315
|
+
"canonicalReference": "@alloy-js/csharp!DocSeeAlsoProps#cref:member",
|
|
3316
|
+
"docComment": "",
|
|
3317
|
+
"excerptTokens": [
|
|
3318
|
+
{
|
|
3319
|
+
"kind": "Content",
|
|
3320
|
+
"text": "cref?: "
|
|
3321
|
+
},
|
|
3322
|
+
{
|
|
3323
|
+
"kind": "Content",
|
|
3324
|
+
"text": "string"
|
|
3325
|
+
},
|
|
3326
|
+
{
|
|
3327
|
+
"kind": "Content",
|
|
3328
|
+
"text": ";"
|
|
3329
|
+
}
|
|
3330
|
+
],
|
|
3331
|
+
"isReadonly": false,
|
|
3332
|
+
"isOptional": true,
|
|
3333
|
+
"releaseTag": "Public",
|
|
3334
|
+
"name": "cref",
|
|
3335
|
+
"propertyTypeTokenRange": {
|
|
3336
|
+
"startIndex": 1,
|
|
3337
|
+
"endIndex": 2
|
|
3338
|
+
}
|
|
3339
|
+
},
|
|
3340
|
+
{
|
|
3341
|
+
"kind": "PropertySignature",
|
|
3342
|
+
"canonicalReference": "@alloy-js/csharp!DocSeeAlsoProps#href:member",
|
|
3343
|
+
"docComment": "",
|
|
3344
|
+
"excerptTokens": [
|
|
3345
|
+
{
|
|
3346
|
+
"kind": "Content",
|
|
3347
|
+
"text": "href?: "
|
|
3348
|
+
},
|
|
3349
|
+
{
|
|
3350
|
+
"kind": "Content",
|
|
3351
|
+
"text": "string"
|
|
3352
|
+
},
|
|
3353
|
+
{
|
|
3354
|
+
"kind": "Content",
|
|
3355
|
+
"text": ";"
|
|
3356
|
+
}
|
|
3357
|
+
],
|
|
3358
|
+
"isReadonly": false,
|
|
3359
|
+
"isOptional": true,
|
|
3360
|
+
"releaseTag": "Public",
|
|
3361
|
+
"name": "href",
|
|
3362
|
+
"propertyTypeTokenRange": {
|
|
3363
|
+
"startIndex": 1,
|
|
3364
|
+
"endIndex": 2
|
|
3365
|
+
}
|
|
3366
|
+
}
|
|
3367
|
+
],
|
|
3368
|
+
"extendsTokenRanges": []
|
|
3369
|
+
},
|
|
3370
|
+
{
|
|
3371
|
+
"kind": "Interface",
|
|
3372
|
+
"canonicalReference": "@alloy-js/csharp!DocSeeProps:interface",
|
|
3373
|
+
"docComment": "",
|
|
3374
|
+
"excerptTokens": [
|
|
3375
|
+
{
|
|
3376
|
+
"kind": "Content",
|
|
3377
|
+
"text": "export interface DocSeeProps "
|
|
3378
|
+
}
|
|
3379
|
+
],
|
|
3380
|
+
"fileUrlPath": "src/components/doc/comment.tsx",
|
|
3381
|
+
"releaseTag": "Public",
|
|
3382
|
+
"name": "DocSeeProps",
|
|
3383
|
+
"preserveMemberOrder": false,
|
|
3384
|
+
"members": [
|
|
3385
|
+
{
|
|
3386
|
+
"kind": "PropertySignature",
|
|
3387
|
+
"canonicalReference": "@alloy-js/csharp!DocSeeProps#children:member",
|
|
3388
|
+
"docComment": "",
|
|
3389
|
+
"excerptTokens": [
|
|
3390
|
+
{
|
|
3391
|
+
"kind": "Content",
|
|
3392
|
+
"text": "children?: "
|
|
3393
|
+
},
|
|
3394
|
+
{
|
|
3395
|
+
"kind": "Reference",
|
|
3396
|
+
"text": "Children",
|
|
3397
|
+
"canonicalReference": "@alloy-js/core!Children:type"
|
|
3398
|
+
},
|
|
3399
|
+
{
|
|
3400
|
+
"kind": "Content",
|
|
3401
|
+
"text": ";"
|
|
3402
|
+
}
|
|
3403
|
+
],
|
|
3404
|
+
"isReadonly": false,
|
|
3405
|
+
"isOptional": true,
|
|
3406
|
+
"releaseTag": "Public",
|
|
3407
|
+
"name": "children",
|
|
3408
|
+
"propertyTypeTokenRange": {
|
|
3409
|
+
"startIndex": 1,
|
|
3410
|
+
"endIndex": 2
|
|
3411
|
+
}
|
|
3412
|
+
},
|
|
3413
|
+
{
|
|
3414
|
+
"kind": "PropertySignature",
|
|
3415
|
+
"canonicalReference": "@alloy-js/csharp!DocSeeProps#cref:member",
|
|
3416
|
+
"docComment": "",
|
|
3417
|
+
"excerptTokens": [
|
|
3418
|
+
{
|
|
3419
|
+
"kind": "Content",
|
|
3420
|
+
"text": "cref?: "
|
|
3421
|
+
},
|
|
3422
|
+
{
|
|
3423
|
+
"kind": "Content",
|
|
3424
|
+
"text": "string"
|
|
3425
|
+
},
|
|
3426
|
+
{
|
|
3427
|
+
"kind": "Content",
|
|
3428
|
+
"text": ";"
|
|
3429
|
+
}
|
|
3430
|
+
],
|
|
3431
|
+
"isReadonly": false,
|
|
3432
|
+
"isOptional": true,
|
|
3433
|
+
"releaseTag": "Public",
|
|
3434
|
+
"name": "cref",
|
|
3435
|
+
"propertyTypeTokenRange": {
|
|
3436
|
+
"startIndex": 1,
|
|
3437
|
+
"endIndex": 2
|
|
3438
|
+
}
|
|
3439
|
+
},
|
|
3440
|
+
{
|
|
3441
|
+
"kind": "PropertySignature",
|
|
3442
|
+
"canonicalReference": "@alloy-js/csharp!DocSeeProps#href:member",
|
|
3443
|
+
"docComment": "",
|
|
3444
|
+
"excerptTokens": [
|
|
3445
|
+
{
|
|
3446
|
+
"kind": "Content",
|
|
3447
|
+
"text": "href?: "
|
|
3448
|
+
},
|
|
3449
|
+
{
|
|
3450
|
+
"kind": "Content",
|
|
3451
|
+
"text": "string"
|
|
3452
|
+
},
|
|
3453
|
+
{
|
|
3454
|
+
"kind": "Content",
|
|
3455
|
+
"text": ";"
|
|
3456
|
+
}
|
|
3457
|
+
],
|
|
3458
|
+
"isReadonly": false,
|
|
3459
|
+
"isOptional": true,
|
|
3460
|
+
"releaseTag": "Public",
|
|
3461
|
+
"name": "href",
|
|
3462
|
+
"propertyTypeTokenRange": {
|
|
3463
|
+
"startIndex": 1,
|
|
3464
|
+
"endIndex": 2
|
|
3465
|
+
}
|
|
3466
|
+
},
|
|
3467
|
+
{
|
|
3468
|
+
"kind": "PropertySignature",
|
|
3469
|
+
"canonicalReference": "@alloy-js/csharp!DocSeeProps#langword:member",
|
|
3470
|
+
"docComment": "",
|
|
3471
|
+
"excerptTokens": [
|
|
3472
|
+
{
|
|
3473
|
+
"kind": "Content",
|
|
3474
|
+
"text": "langword?: "
|
|
3475
|
+
},
|
|
3476
|
+
{
|
|
3477
|
+
"kind": "Content",
|
|
3478
|
+
"text": "string"
|
|
3479
|
+
},
|
|
3480
|
+
{
|
|
3481
|
+
"kind": "Content",
|
|
3482
|
+
"text": ";"
|
|
3483
|
+
}
|
|
3484
|
+
],
|
|
3485
|
+
"isReadonly": false,
|
|
3486
|
+
"isOptional": true,
|
|
3487
|
+
"releaseTag": "Public",
|
|
3488
|
+
"name": "langword",
|
|
3489
|
+
"propertyTypeTokenRange": {
|
|
3490
|
+
"startIndex": 1,
|
|
3491
|
+
"endIndex": 2
|
|
3492
|
+
}
|
|
3493
|
+
}
|
|
3494
|
+
],
|
|
3495
|
+
"extendsTokenRanges": []
|
|
3496
|
+
},
|
|
3497
|
+
{
|
|
3498
|
+
"kind": "Function",
|
|
3499
|
+
"canonicalReference": "@alloy-js/csharp!DocSummary:function(1)",
|
|
3500
|
+
"docComment": "",
|
|
3501
|
+
"excerptTokens": [
|
|
3502
|
+
{
|
|
3503
|
+
"kind": "Content",
|
|
3504
|
+
"text": "DocSummary: (props: "
|
|
3505
|
+
},
|
|
3506
|
+
{
|
|
3507
|
+
"kind": "Reference",
|
|
3508
|
+
"text": "DocCommentProps",
|
|
3509
|
+
"canonicalReference": "@alloy-js/csharp!DocCommentProps:interface"
|
|
3510
|
+
},
|
|
3511
|
+
{
|
|
3512
|
+
"kind": "Content",
|
|
3513
|
+
"text": ") => "
|
|
3514
|
+
},
|
|
3515
|
+
{
|
|
3516
|
+
"kind": "Reference",
|
|
3517
|
+
"text": "Children",
|
|
3518
|
+
"canonicalReference": "@alloy-js/core!Children:type"
|
|
3519
|
+
}
|
|
3520
|
+
],
|
|
3521
|
+
"fileUrlPath": "src/components/doc/comment.tsx",
|
|
3522
|
+
"returnTypeTokenRange": {
|
|
3523
|
+
"startIndex": 3,
|
|
3524
|
+
"endIndex": 4
|
|
3525
|
+
},
|
|
3526
|
+
"releaseTag": "Public",
|
|
3527
|
+
"overloadIndex": 1,
|
|
3528
|
+
"parameters": [
|
|
3529
|
+
{
|
|
3530
|
+
"parameterName": "props",
|
|
3531
|
+
"parameterTypeTokenRange": {
|
|
3532
|
+
"startIndex": 1,
|
|
3533
|
+
"endIndex": 2
|
|
3534
|
+
},
|
|
3535
|
+
"isOptional": false
|
|
3536
|
+
}
|
|
3537
|
+
],
|
|
3538
|
+
"name": "DocSummary"
|
|
3539
|
+
},
|
|
3540
|
+
{
|
|
3541
|
+
"kind": "Function",
|
|
3542
|
+
"canonicalReference": "@alloy-js/csharp!DocTypeParam:function(1)",
|
|
3543
|
+
"docComment": "",
|
|
3544
|
+
"excerptTokens": [
|
|
3545
|
+
{
|
|
3546
|
+
"kind": "Content",
|
|
3547
|
+
"text": "DocTypeParam: (props: "
|
|
3548
|
+
},
|
|
3549
|
+
{
|
|
3550
|
+
"kind": "Reference",
|
|
3551
|
+
"text": "DocTypeParamProps",
|
|
3552
|
+
"canonicalReference": "@alloy-js/csharp!DocTypeParamProps:interface"
|
|
3553
|
+
},
|
|
3554
|
+
{
|
|
3555
|
+
"kind": "Content",
|
|
3556
|
+
"text": ") => "
|
|
3557
|
+
},
|
|
3558
|
+
{
|
|
3559
|
+
"kind": "Reference",
|
|
3560
|
+
"text": "Children",
|
|
3561
|
+
"canonicalReference": "@alloy-js/core!Children:type"
|
|
3562
|
+
}
|
|
3563
|
+
],
|
|
3564
|
+
"fileUrlPath": "src/components/doc/comment.tsx",
|
|
3565
|
+
"returnTypeTokenRange": {
|
|
3566
|
+
"startIndex": 3,
|
|
3567
|
+
"endIndex": 4
|
|
3568
|
+
},
|
|
3569
|
+
"releaseTag": "Public",
|
|
3570
|
+
"overloadIndex": 1,
|
|
3571
|
+
"parameters": [
|
|
3572
|
+
{
|
|
3573
|
+
"parameterName": "props",
|
|
3574
|
+
"parameterTypeTokenRange": {
|
|
3575
|
+
"startIndex": 1,
|
|
3576
|
+
"endIndex": 2
|
|
3577
|
+
},
|
|
3578
|
+
"isOptional": false
|
|
3579
|
+
}
|
|
3580
|
+
],
|
|
3581
|
+
"name": "DocTypeParam"
|
|
3582
|
+
},
|
|
3583
|
+
{
|
|
3584
|
+
"kind": "Interface",
|
|
3585
|
+
"canonicalReference": "@alloy-js/csharp!DocTypeParamProps:interface",
|
|
3586
|
+
"docComment": "",
|
|
3587
|
+
"excerptTokens": [
|
|
3588
|
+
{
|
|
3589
|
+
"kind": "Content",
|
|
3590
|
+
"text": "export interface DocTypeParamProps "
|
|
3591
|
+
}
|
|
3592
|
+
],
|
|
3593
|
+
"fileUrlPath": "src/components/doc/comment.tsx",
|
|
3594
|
+
"releaseTag": "Public",
|
|
3595
|
+
"name": "DocTypeParamProps",
|
|
3596
|
+
"preserveMemberOrder": false,
|
|
3597
|
+
"members": [
|
|
3598
|
+
{
|
|
3599
|
+
"kind": "PropertySignature",
|
|
3600
|
+
"canonicalReference": "@alloy-js/csharp!DocTypeParamProps#children:member",
|
|
3601
|
+
"docComment": "",
|
|
3602
|
+
"excerptTokens": [
|
|
3603
|
+
{
|
|
3604
|
+
"kind": "Content",
|
|
3605
|
+
"text": "children: "
|
|
3606
|
+
},
|
|
3607
|
+
{
|
|
3608
|
+
"kind": "Reference",
|
|
3609
|
+
"text": "Children",
|
|
3610
|
+
"canonicalReference": "@alloy-js/core!Children:type"
|
|
3611
|
+
},
|
|
3612
|
+
{
|
|
3613
|
+
"kind": "Content",
|
|
3614
|
+
"text": ";"
|
|
3615
|
+
}
|
|
3616
|
+
],
|
|
3617
|
+
"isReadonly": false,
|
|
3618
|
+
"isOptional": false,
|
|
3619
|
+
"releaseTag": "Public",
|
|
3620
|
+
"name": "children",
|
|
3621
|
+
"propertyTypeTokenRange": {
|
|
3622
|
+
"startIndex": 1,
|
|
3623
|
+
"endIndex": 2
|
|
3624
|
+
}
|
|
3625
|
+
},
|
|
3626
|
+
{
|
|
3627
|
+
"kind": "PropertySignature",
|
|
3628
|
+
"canonicalReference": "@alloy-js/csharp!DocTypeParamProps#name:member",
|
|
3629
|
+
"docComment": "",
|
|
3630
|
+
"excerptTokens": [
|
|
3631
|
+
{
|
|
3632
|
+
"kind": "Content",
|
|
3633
|
+
"text": "name: "
|
|
3634
|
+
},
|
|
3635
|
+
{
|
|
3636
|
+
"kind": "Content",
|
|
3637
|
+
"text": "string"
|
|
3638
|
+
},
|
|
3639
|
+
{
|
|
3640
|
+
"kind": "Content",
|
|
3641
|
+
"text": ";"
|
|
3642
|
+
}
|
|
3643
|
+
],
|
|
3644
|
+
"isReadonly": false,
|
|
3645
|
+
"isOptional": false,
|
|
3646
|
+
"releaseTag": "Public",
|
|
3647
|
+
"name": "name",
|
|
3648
|
+
"propertyTypeTokenRange": {
|
|
3649
|
+
"startIndex": 1,
|
|
3650
|
+
"endIndex": 2
|
|
3651
|
+
}
|
|
3652
|
+
}
|
|
3653
|
+
],
|
|
3654
|
+
"extendsTokenRanges": []
|
|
3655
|
+
},
|
|
3656
|
+
{
|
|
3657
|
+
"kind": "Function",
|
|
3658
|
+
"canonicalReference": "@alloy-js/csharp!DocTypeParamRef:function(1)",
|
|
3659
|
+
"docComment": "",
|
|
3660
|
+
"excerptTokens": [
|
|
3661
|
+
{
|
|
3662
|
+
"kind": "Content",
|
|
3663
|
+
"text": "DocTypeParamRef: (props: "
|
|
3664
|
+
},
|
|
3665
|
+
{
|
|
3666
|
+
"kind": "Reference",
|
|
3667
|
+
"text": "DocTypeParamRefProps",
|
|
3668
|
+
"canonicalReference": "@alloy-js/csharp!DocTypeParamRefProps:interface"
|
|
3669
|
+
},
|
|
3670
|
+
{
|
|
3671
|
+
"kind": "Content",
|
|
3672
|
+
"text": ") => "
|
|
3673
|
+
},
|
|
3674
|
+
{
|
|
3675
|
+
"kind": "Content",
|
|
3676
|
+
"text": "string"
|
|
3677
|
+
}
|
|
3678
|
+
],
|
|
3679
|
+
"fileUrlPath": "src/components/doc/comment.tsx",
|
|
3680
|
+
"returnTypeTokenRange": {
|
|
3681
|
+
"startIndex": 3,
|
|
3682
|
+
"endIndex": 4
|
|
3683
|
+
},
|
|
3684
|
+
"releaseTag": "Public",
|
|
3685
|
+
"overloadIndex": 1,
|
|
3686
|
+
"parameters": [
|
|
3687
|
+
{
|
|
3688
|
+
"parameterName": "props",
|
|
3689
|
+
"parameterTypeTokenRange": {
|
|
3690
|
+
"startIndex": 1,
|
|
3691
|
+
"endIndex": 2
|
|
3692
|
+
},
|
|
3693
|
+
"isOptional": false
|
|
3694
|
+
}
|
|
3695
|
+
],
|
|
3696
|
+
"name": "DocTypeParamRef"
|
|
3697
|
+
},
|
|
3698
|
+
{
|
|
3699
|
+
"kind": "Interface",
|
|
3700
|
+
"canonicalReference": "@alloy-js/csharp!DocTypeParamRefProps:interface",
|
|
3701
|
+
"docComment": "",
|
|
3702
|
+
"excerptTokens": [
|
|
3703
|
+
{
|
|
3704
|
+
"kind": "Content",
|
|
3705
|
+
"text": "export interface DocTypeParamRefProps "
|
|
3706
|
+
}
|
|
3707
|
+
],
|
|
3708
|
+
"fileUrlPath": "src/components/doc/comment.tsx",
|
|
3709
|
+
"releaseTag": "Public",
|
|
3710
|
+
"name": "DocTypeParamRefProps",
|
|
3711
|
+
"preserveMemberOrder": false,
|
|
3712
|
+
"members": [
|
|
3713
|
+
{
|
|
3714
|
+
"kind": "PropertySignature",
|
|
3715
|
+
"canonicalReference": "@alloy-js/csharp!DocTypeParamRefProps#name:member",
|
|
3716
|
+
"docComment": "",
|
|
3717
|
+
"excerptTokens": [
|
|
3718
|
+
{
|
|
3719
|
+
"kind": "Content",
|
|
3720
|
+
"text": "name: "
|
|
3721
|
+
},
|
|
3722
|
+
{
|
|
3723
|
+
"kind": "Content",
|
|
3724
|
+
"text": "string"
|
|
3725
|
+
},
|
|
3726
|
+
{
|
|
3727
|
+
"kind": "Content",
|
|
3728
|
+
"text": ";"
|
|
3729
|
+
}
|
|
3730
|
+
],
|
|
3731
|
+
"isReadonly": false,
|
|
3732
|
+
"isOptional": false,
|
|
3733
|
+
"releaseTag": "Public",
|
|
3734
|
+
"name": "name",
|
|
3735
|
+
"propertyTypeTokenRange": {
|
|
3736
|
+
"startIndex": 1,
|
|
3737
|
+
"endIndex": 2
|
|
3738
|
+
}
|
|
3739
|
+
}
|
|
3740
|
+
],
|
|
3741
|
+
"extendsTokenRanges": []
|
|
3742
|
+
},
|
|
3743
|
+
{
|
|
3744
|
+
"kind": "Function",
|
|
3745
|
+
"canonicalReference": "@alloy-js/csharp!DocValue:function(1)",
|
|
3746
|
+
"docComment": "",
|
|
3747
|
+
"excerptTokens": [
|
|
3748
|
+
{
|
|
3749
|
+
"kind": "Content",
|
|
3750
|
+
"text": "DocValue: (props: "
|
|
3751
|
+
},
|
|
3752
|
+
{
|
|
3753
|
+
"kind": "Reference",
|
|
3754
|
+
"text": "DocCommentProps",
|
|
3755
|
+
"canonicalReference": "@alloy-js/csharp!DocCommentProps:interface"
|
|
3756
|
+
},
|
|
3757
|
+
{
|
|
3758
|
+
"kind": "Content",
|
|
3759
|
+
"text": ") => "
|
|
3760
|
+
},
|
|
3761
|
+
{
|
|
3762
|
+
"kind": "Reference",
|
|
3763
|
+
"text": "Children",
|
|
3764
|
+
"canonicalReference": "@alloy-js/core!Children:type"
|
|
3765
|
+
}
|
|
3766
|
+
],
|
|
3767
|
+
"fileUrlPath": "src/components/doc/comment.tsx",
|
|
3768
|
+
"returnTypeTokenRange": {
|
|
3769
|
+
"startIndex": 3,
|
|
3770
|
+
"endIndex": 4
|
|
3771
|
+
},
|
|
3772
|
+
"releaseTag": "Public",
|
|
3773
|
+
"overloadIndex": 1,
|
|
3774
|
+
"parameters": [
|
|
3775
|
+
{
|
|
3776
|
+
"parameterName": "props",
|
|
3777
|
+
"parameterTypeTokenRange": {
|
|
3778
|
+
"startIndex": 1,
|
|
3779
|
+
"endIndex": 2
|
|
3780
|
+
},
|
|
3781
|
+
"isOptional": false
|
|
3782
|
+
}
|
|
3783
|
+
],
|
|
3784
|
+
"name": "DocValue"
|
|
3785
|
+
},
|
|
3786
|
+
{
|
|
3787
|
+
"kind": "Function",
|
|
3788
|
+
"canonicalReference": "@alloy-js/csharp!DocWhen:function(1)",
|
|
3789
|
+
"docComment": "/**\n * Conditionally render the given doc in a <DocComment /> component and tail with a line\n */\n",
|
|
3790
|
+
"excerptTokens": [
|
|
3791
|
+
{
|
|
3792
|
+
"kind": "Content",
|
|
3793
|
+
"text": "export declare function DocWhen(props: "
|
|
3794
|
+
},
|
|
3795
|
+
{
|
|
3796
|
+
"kind": "Reference",
|
|
3797
|
+
"text": "DocWhenProps",
|
|
3798
|
+
"canonicalReference": "@alloy-js/csharp!DocWhenProps:interface"
|
|
3799
|
+
},
|
|
3800
|
+
{
|
|
3801
|
+
"kind": "Content",
|
|
3802
|
+
"text": "): "
|
|
3803
|
+
},
|
|
3804
|
+
{
|
|
3805
|
+
"kind": "Reference",
|
|
3806
|
+
"text": "Children",
|
|
3807
|
+
"canonicalReference": "@alloy-js/core!Children:type"
|
|
3808
|
+
},
|
|
3809
|
+
{
|
|
3810
|
+
"kind": "Content",
|
|
3811
|
+
"text": ";"
|
|
3812
|
+
}
|
|
3813
|
+
],
|
|
3814
|
+
"fileUrlPath": "src/components/doc/comment.tsx",
|
|
3815
|
+
"returnTypeTokenRange": {
|
|
3816
|
+
"startIndex": 3,
|
|
3817
|
+
"endIndex": 4
|
|
3818
|
+
},
|
|
3819
|
+
"releaseTag": "Public",
|
|
3820
|
+
"overloadIndex": 1,
|
|
3821
|
+
"parameters": [
|
|
3822
|
+
{
|
|
3823
|
+
"parameterName": "props",
|
|
3824
|
+
"parameterTypeTokenRange": {
|
|
3825
|
+
"startIndex": 1,
|
|
3826
|
+
"endIndex": 2
|
|
3827
|
+
},
|
|
3828
|
+
"isOptional": false
|
|
3829
|
+
}
|
|
3830
|
+
],
|
|
3831
|
+
"name": "DocWhen"
|
|
3832
|
+
},
|
|
3833
|
+
{
|
|
3834
|
+
"kind": "Interface",
|
|
3835
|
+
"canonicalReference": "@alloy-js/csharp!DocWhenProps:interface",
|
|
3836
|
+
"docComment": "",
|
|
3837
|
+
"excerptTokens": [
|
|
3838
|
+
{
|
|
3839
|
+
"kind": "Content",
|
|
3840
|
+
"text": "export interface DocWhenProps "
|
|
3841
|
+
}
|
|
3842
|
+
],
|
|
3843
|
+
"fileUrlPath": "src/components/doc/comment.tsx",
|
|
3844
|
+
"releaseTag": "Public",
|
|
3845
|
+
"name": "DocWhenProps",
|
|
3846
|
+
"preserveMemberOrder": false,
|
|
3847
|
+
"members": [
|
|
3848
|
+
{
|
|
3849
|
+
"kind": "PropertySignature",
|
|
3850
|
+
"canonicalReference": "@alloy-js/csharp!DocWhenProps#doc:member",
|
|
3851
|
+
"docComment": "",
|
|
3852
|
+
"excerptTokens": [
|
|
3853
|
+
{
|
|
3854
|
+
"kind": "Content",
|
|
3855
|
+
"text": "doc: "
|
|
3856
|
+
},
|
|
3857
|
+
{
|
|
3858
|
+
"kind": "Reference",
|
|
3859
|
+
"text": "Children",
|
|
3860
|
+
"canonicalReference": "@alloy-js/core!Children:type"
|
|
3861
|
+
},
|
|
3862
|
+
{
|
|
3863
|
+
"kind": "Content",
|
|
3864
|
+
"text": " | undefined"
|
|
3865
|
+
},
|
|
3866
|
+
{
|
|
3867
|
+
"kind": "Content",
|
|
3868
|
+
"text": ";"
|
|
3869
|
+
}
|
|
3870
|
+
],
|
|
3871
|
+
"isReadonly": false,
|
|
3872
|
+
"isOptional": false,
|
|
3873
|
+
"releaseTag": "Public",
|
|
3874
|
+
"name": "doc",
|
|
3875
|
+
"propertyTypeTokenRange": {
|
|
3876
|
+
"startIndex": 1,
|
|
3877
|
+
"endIndex": 3
|
|
3878
|
+
}
|
|
3879
|
+
}
|
|
3880
|
+
],
|
|
3881
|
+
"extendsTokenRanges": []
|
|
3882
|
+
},
|
|
3883
|
+
{
|
|
3884
|
+
"kind": "Function",
|
|
3885
|
+
"canonicalReference": "@alloy-js/csharp!EnumDeclaration:function(1)",
|
|
3886
|
+
"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",
|
|
3887
|
+
"excerptTokens": [
|
|
3888
|
+
{
|
|
3889
|
+
"kind": "Content",
|
|
3890
|
+
"text": "export declare function EnumDeclaration(props: "
|
|
3891
|
+
},
|
|
3892
|
+
{
|
|
3893
|
+
"kind": "Reference",
|
|
3894
|
+
"text": "EnumDeclarationProps",
|
|
3895
|
+
"canonicalReference": "@alloy-js/csharp!EnumDeclarationProps:interface"
|
|
3896
|
+
},
|
|
3897
|
+
{
|
|
3898
|
+
"kind": "Content",
|
|
3899
|
+
"text": "): "
|
|
3900
|
+
},
|
|
3901
|
+
{
|
|
3902
|
+
"kind": "Reference",
|
|
3903
|
+
"text": "core.Children",
|
|
3904
|
+
"canonicalReference": "@alloy-js/core!Children:type"
|
|
3905
|
+
},
|
|
3906
|
+
{
|
|
3907
|
+
"kind": "Content",
|
|
3908
|
+
"text": ";"
|
|
3909
|
+
}
|
|
3910
|
+
],
|
|
3911
|
+
"fileUrlPath": "src/components/EnumDeclaration.tsx",
|
|
3912
|
+
"returnTypeTokenRange": {
|
|
3913
|
+
"startIndex": 3,
|
|
3914
|
+
"endIndex": 4
|
|
3915
|
+
},
|
|
3916
|
+
"releaseTag": "Public",
|
|
3917
|
+
"overloadIndex": 1,
|
|
3918
|
+
"parameters": [
|
|
3919
|
+
{
|
|
3920
|
+
"parameterName": "props",
|
|
3921
|
+
"parameterTypeTokenRange": {
|
|
3922
|
+
"startIndex": 1,
|
|
3923
|
+
"endIndex": 2
|
|
3924
|
+
},
|
|
3925
|
+
"isOptional": false
|
|
3926
|
+
}
|
|
3927
|
+
],
|
|
3928
|
+
"name": "EnumDeclaration"
|
|
3929
|
+
},
|
|
3930
|
+
{
|
|
3931
|
+
"kind": "Interface",
|
|
3932
|
+
"canonicalReference": "@alloy-js/csharp!EnumDeclarationProps:interface",
|
|
3933
|
+
"docComment": "",
|
|
3934
|
+
"excerptTokens": [
|
|
3935
|
+
{
|
|
3936
|
+
"kind": "Content",
|
|
3937
|
+
"text": "export interface EnumDeclarationProps extends "
|
|
3938
|
+
},
|
|
3939
|
+
{
|
|
3940
|
+
"kind": "Reference",
|
|
3941
|
+
"text": "AccessModifiers",
|
|
3942
|
+
"canonicalReference": "@alloy-js/csharp!AccessModifiers:interface"
|
|
3943
|
+
},
|
|
3944
|
+
{
|
|
3945
|
+
"kind": "Content",
|
|
3946
|
+
"text": " "
|
|
3947
|
+
}
|
|
3948
|
+
],
|
|
3949
|
+
"fileUrlPath": "src/components/EnumDeclaration.tsx",
|
|
3950
|
+
"releaseTag": "Public",
|
|
3951
|
+
"name": "EnumDeclarationProps",
|
|
3952
|
+
"preserveMemberOrder": false,
|
|
3953
|
+
"members": [
|
|
3954
|
+
{
|
|
3955
|
+
"kind": "PropertySignature",
|
|
3956
|
+
"canonicalReference": "@alloy-js/csharp!EnumDeclarationProps#children:member",
|
|
3957
|
+
"docComment": "",
|
|
3958
|
+
"excerptTokens": [
|
|
3959
|
+
{
|
|
3960
|
+
"kind": "Content",
|
|
3961
|
+
"text": "children?: "
|
|
3962
|
+
},
|
|
3963
|
+
{
|
|
3964
|
+
"kind": "Reference",
|
|
3965
|
+
"text": "core.Children",
|
|
3966
|
+
"canonicalReference": "@alloy-js/core!Children:type"
|
|
3967
|
+
},
|
|
3968
|
+
{
|
|
3969
|
+
"kind": "Content",
|
|
3970
|
+
"text": ";"
|
|
3971
|
+
}
|
|
3972
|
+
],
|
|
3973
|
+
"isReadonly": false,
|
|
3974
|
+
"isOptional": true,
|
|
3975
|
+
"releaseTag": "Public",
|
|
3976
|
+
"name": "children",
|
|
3977
|
+
"propertyTypeTokenRange": {
|
|
3978
|
+
"startIndex": 1,
|
|
3979
|
+
"endIndex": 2
|
|
3980
|
+
}
|
|
3981
|
+
},
|
|
3982
|
+
{
|
|
3983
|
+
"kind": "PropertySignature",
|
|
3984
|
+
"canonicalReference": "@alloy-js/csharp!EnumDeclarationProps#name:member",
|
|
3985
|
+
"docComment": "",
|
|
3986
|
+
"excerptTokens": [
|
|
3987
|
+
{
|
|
3988
|
+
"kind": "Content",
|
|
3989
|
+
"text": "name: "
|
|
3990
|
+
},
|
|
3991
|
+
{
|
|
3992
|
+
"kind": "Content",
|
|
3993
|
+
"text": "string"
|
|
3994
|
+
},
|
|
3995
|
+
{
|
|
3996
|
+
"kind": "Content",
|
|
3997
|
+
"text": ";"
|
|
3998
|
+
}
|
|
3999
|
+
],
|
|
4000
|
+
"isReadonly": false,
|
|
4001
|
+
"isOptional": false,
|
|
4002
|
+
"releaseTag": "Public",
|
|
4003
|
+
"name": "name",
|
|
4004
|
+
"propertyTypeTokenRange": {
|
|
4005
|
+
"startIndex": 1,
|
|
4006
|
+
"endIndex": 2
|
|
4007
|
+
}
|
|
4008
|
+
},
|
|
4009
|
+
{
|
|
4010
|
+
"kind": "PropertySignature",
|
|
4011
|
+
"canonicalReference": "@alloy-js/csharp!EnumDeclarationProps#refkey:member",
|
|
4012
|
+
"docComment": "",
|
|
4013
|
+
"excerptTokens": [
|
|
4014
|
+
{
|
|
4015
|
+
"kind": "Content",
|
|
4016
|
+
"text": "refkey?: "
|
|
4017
|
+
},
|
|
4018
|
+
{
|
|
4019
|
+
"kind": "Reference",
|
|
4020
|
+
"text": "core.Refkey",
|
|
4021
|
+
"canonicalReference": "@alloy-js/core!Refkey:type"
|
|
4022
|
+
},
|
|
4023
|
+
{
|
|
4024
|
+
"kind": "Content",
|
|
4025
|
+
"text": ";"
|
|
4026
|
+
}
|
|
4027
|
+
],
|
|
4028
|
+
"isReadonly": false,
|
|
4029
|
+
"isOptional": true,
|
|
4030
|
+
"releaseTag": "Public",
|
|
4031
|
+
"name": "refkey",
|
|
4032
|
+
"propertyTypeTokenRange": {
|
|
4033
|
+
"startIndex": 1,
|
|
4034
|
+
"endIndex": 2
|
|
4035
|
+
}
|
|
4036
|
+
}
|
|
4037
|
+
],
|
|
4038
|
+
"extendsTokenRanges": [
|
|
4039
|
+
{
|
|
4040
|
+
"startIndex": 1,
|
|
4041
|
+
"endIndex": 2
|
|
4042
|
+
}
|
|
4043
|
+
]
|
|
4044
|
+
},
|
|
4045
|
+
{
|
|
4046
|
+
"kind": "Function",
|
|
4047
|
+
"canonicalReference": "@alloy-js/csharp!EnumMember:function(1)",
|
|
4048
|
+
"docComment": "",
|
|
4049
|
+
"excerptTokens": [
|
|
4050
|
+
{
|
|
4051
|
+
"kind": "Content",
|
|
4052
|
+
"text": "export declare function EnumMember(props: "
|
|
4053
|
+
},
|
|
4054
|
+
{
|
|
4055
|
+
"kind": "Reference",
|
|
4056
|
+
"text": "EnumMemberProps",
|
|
4057
|
+
"canonicalReference": "@alloy-js/csharp!EnumMemberProps:interface"
|
|
4058
|
+
},
|
|
4059
|
+
{
|
|
4060
|
+
"kind": "Content",
|
|
4061
|
+
"text": "): "
|
|
4062
|
+
},
|
|
4063
|
+
{
|
|
4064
|
+
"kind": "Reference",
|
|
4065
|
+
"text": "core.Children",
|
|
4066
|
+
"canonicalReference": "@alloy-js/core!Children:type"
|
|
4067
|
+
},
|
|
4068
|
+
{
|
|
4069
|
+
"kind": "Content",
|
|
4070
|
+
"text": ";"
|
|
4071
|
+
}
|
|
4072
|
+
],
|
|
4073
|
+
"fileUrlPath": "src/components/EnumDeclaration.tsx",
|
|
4074
|
+
"returnTypeTokenRange": {
|
|
4075
|
+
"startIndex": 3,
|
|
4076
|
+
"endIndex": 4
|
|
4077
|
+
},
|
|
4078
|
+
"releaseTag": "Public",
|
|
4079
|
+
"overloadIndex": 1,
|
|
4080
|
+
"parameters": [
|
|
4081
|
+
{
|
|
4082
|
+
"parameterName": "props",
|
|
4083
|
+
"parameterTypeTokenRange": {
|
|
4084
|
+
"startIndex": 1,
|
|
4085
|
+
"endIndex": 2
|
|
4086
|
+
},
|
|
4087
|
+
"isOptional": false
|
|
4088
|
+
}
|
|
4089
|
+
],
|
|
4090
|
+
"name": "EnumMember"
|
|
4091
|
+
},
|
|
4092
|
+
{
|
|
4093
|
+
"kind": "Interface",
|
|
4094
|
+
"canonicalReference": "@alloy-js/csharp!EnumMemberProps:interface",
|
|
4095
|
+
"docComment": "",
|
|
4096
|
+
"excerptTokens": [
|
|
4097
|
+
{
|
|
4098
|
+
"kind": "Content",
|
|
4099
|
+
"text": "export interface EnumMemberProps "
|
|
4100
|
+
}
|
|
4101
|
+
],
|
|
4102
|
+
"fileUrlPath": "src/components/EnumDeclaration.tsx",
|
|
4103
|
+
"releaseTag": "Public",
|
|
4104
|
+
"name": "EnumMemberProps",
|
|
4105
|
+
"preserveMemberOrder": false,
|
|
4106
|
+
"members": [
|
|
4107
|
+
{
|
|
4108
|
+
"kind": "PropertySignature",
|
|
4109
|
+
"canonicalReference": "@alloy-js/csharp!EnumMemberProps#name:member",
|
|
4110
|
+
"docComment": "",
|
|
4111
|
+
"excerptTokens": [
|
|
4112
|
+
{
|
|
4113
|
+
"kind": "Content",
|
|
4114
|
+
"text": "name: "
|
|
4115
|
+
},
|
|
4116
|
+
{
|
|
4117
|
+
"kind": "Content",
|
|
4118
|
+
"text": "string"
|
|
4119
|
+
},
|
|
4120
|
+
{
|
|
4121
|
+
"kind": "Content",
|
|
4122
|
+
"text": ";"
|
|
4123
|
+
}
|
|
4124
|
+
],
|
|
4125
|
+
"isReadonly": false,
|
|
4126
|
+
"isOptional": false,
|
|
4127
|
+
"releaseTag": "Public",
|
|
4128
|
+
"name": "name",
|
|
4129
|
+
"propertyTypeTokenRange": {
|
|
4130
|
+
"startIndex": 1,
|
|
4131
|
+
"endIndex": 2
|
|
4132
|
+
}
|
|
4133
|
+
},
|
|
4134
|
+
{
|
|
4135
|
+
"kind": "PropertySignature",
|
|
4136
|
+
"canonicalReference": "@alloy-js/csharp!EnumMemberProps#refkey:member",
|
|
4137
|
+
"docComment": "",
|
|
4138
|
+
"excerptTokens": [
|
|
4139
|
+
{
|
|
4140
|
+
"kind": "Content",
|
|
4141
|
+
"text": "refkey?: "
|
|
4142
|
+
},
|
|
4143
|
+
{
|
|
4144
|
+
"kind": "Reference",
|
|
4145
|
+
"text": "core.Refkey",
|
|
4146
|
+
"canonicalReference": "@alloy-js/core!Refkey:type"
|
|
4147
|
+
},
|
|
4148
|
+
{
|
|
4149
|
+
"kind": "Content",
|
|
4150
|
+
"text": ";"
|
|
4151
|
+
}
|
|
4152
|
+
],
|
|
4153
|
+
"isReadonly": false,
|
|
4154
|
+
"isOptional": true,
|
|
4155
|
+
"releaseTag": "Public",
|
|
4156
|
+
"name": "refkey",
|
|
4157
|
+
"propertyTypeTokenRange": {
|
|
4158
|
+
"startIndex": 1,
|
|
4159
|
+
"endIndex": 2
|
|
4160
|
+
}
|
|
4161
|
+
}
|
|
4162
|
+
],
|
|
4163
|
+
"extendsTokenRanges": []
|
|
4164
|
+
},
|
|
4165
|
+
{
|
|
4166
|
+
"kind": "Function",
|
|
4167
|
+
"canonicalReference": "@alloy-js/csharp!getAccessModifier:function(1)",
|
|
4168
|
+
"docComment": "",
|
|
4169
|
+
"excerptTokens": [
|
|
4170
|
+
{
|
|
4171
|
+
"kind": "Content",
|
|
4172
|
+
"text": "getAccessModifier: (data: "
|
|
4173
|
+
},
|
|
4174
|
+
{
|
|
4175
|
+
"kind": "Reference",
|
|
4176
|
+
"text": "AccessModifiers",
|
|
4177
|
+
"canonicalReference": "@alloy-js/csharp!AccessModifiers:interface"
|
|
4178
|
+
},
|
|
4179
|
+
{
|
|
4180
|
+
"kind": "Content",
|
|
4181
|
+
"text": ") => "
|
|
4182
|
+
},
|
|
4183
|
+
{
|
|
4184
|
+
"kind": "Content",
|
|
4185
|
+
"text": "string"
|
|
4186
|
+
}
|
|
4187
|
+
],
|
|
4188
|
+
"fileUrlPath": "src/modifiers.ts",
|
|
4189
|
+
"returnTypeTokenRange": {
|
|
4190
|
+
"startIndex": 3,
|
|
4191
|
+
"endIndex": 4
|
|
4192
|
+
},
|
|
4193
|
+
"releaseTag": "Public",
|
|
4194
|
+
"overloadIndex": 1,
|
|
4195
|
+
"parameters": [
|
|
4196
|
+
{
|
|
4197
|
+
"parameterName": "data",
|
|
4198
|
+
"parameterTypeTokenRange": {
|
|
4199
|
+
"startIndex": 1,
|
|
4200
|
+
"endIndex": 2
|
|
4201
|
+
},
|
|
4202
|
+
"isOptional": false
|
|
4203
|
+
}
|
|
4204
|
+
],
|
|
4205
|
+
"name": "getAccessModifier"
|
|
4206
|
+
},
|
|
4207
|
+
{
|
|
4208
|
+
"kind": "Function",
|
|
4209
|
+
"canonicalReference": "@alloy-js/csharp!getAsyncModifier:function(1)",
|
|
4210
|
+
"docComment": "",
|
|
4211
|
+
"excerptTokens": [
|
|
4212
|
+
{
|
|
4213
|
+
"kind": "Content",
|
|
4214
|
+
"text": "export declare function getAsyncModifier(async?: "
|
|
4215
|
+
},
|
|
4216
|
+
{
|
|
4217
|
+
"kind": "Content",
|
|
4218
|
+
"text": "boolean"
|
|
4219
|
+
},
|
|
4220
|
+
{
|
|
4221
|
+
"kind": "Content",
|
|
4222
|
+
"text": "): "
|
|
4223
|
+
},
|
|
4224
|
+
{
|
|
4225
|
+
"kind": "Content",
|
|
4226
|
+
"text": "string"
|
|
4227
|
+
},
|
|
4228
|
+
{
|
|
4229
|
+
"kind": "Content",
|
|
4230
|
+
"text": ";"
|
|
4231
|
+
}
|
|
4232
|
+
],
|
|
4233
|
+
"fileUrlPath": "src/modifiers.ts",
|
|
4234
|
+
"returnTypeTokenRange": {
|
|
4235
|
+
"startIndex": 3,
|
|
4236
|
+
"endIndex": 4
|
|
4237
|
+
},
|
|
4238
|
+
"releaseTag": "Public",
|
|
4239
|
+
"overloadIndex": 1,
|
|
4240
|
+
"parameters": [
|
|
4241
|
+
{
|
|
4242
|
+
"parameterName": "async",
|
|
2426
4243
|
"parameterTypeTokenRange": {
|
|
2427
4244
|
"startIndex": 1,
|
|
2428
4245
|
"endIndex": 2
|
|
@@ -2534,6 +4351,34 @@
|
|
|
2534
4351
|
"name": "InterfaceDeclarationProps",
|
|
2535
4352
|
"preserveMemberOrder": false,
|
|
2536
4353
|
"members": [
|
|
4354
|
+
{
|
|
4355
|
+
"kind": "PropertySignature",
|
|
4356
|
+
"canonicalReference": "@alloy-js/csharp!InterfaceDeclarationProps#doc:member",
|
|
4357
|
+
"docComment": "/**\n * Doc comment\n */\n",
|
|
4358
|
+
"excerptTokens": [
|
|
4359
|
+
{
|
|
4360
|
+
"kind": "Content",
|
|
4361
|
+
"text": "doc?: "
|
|
4362
|
+
},
|
|
4363
|
+
{
|
|
4364
|
+
"kind": "Reference",
|
|
4365
|
+
"text": "core.Children",
|
|
4366
|
+
"canonicalReference": "@alloy-js/core!Children:type"
|
|
4367
|
+
},
|
|
4368
|
+
{
|
|
4369
|
+
"kind": "Content",
|
|
4370
|
+
"text": ";"
|
|
4371
|
+
}
|
|
4372
|
+
],
|
|
4373
|
+
"isReadonly": false,
|
|
4374
|
+
"isOptional": true,
|
|
4375
|
+
"releaseTag": "Public",
|
|
4376
|
+
"name": "doc",
|
|
4377
|
+
"propertyTypeTokenRange": {
|
|
4378
|
+
"startIndex": 1,
|
|
4379
|
+
"endIndex": 2
|
|
4380
|
+
}
|
|
4381
|
+
},
|
|
2537
4382
|
{
|
|
2538
4383
|
"kind": "PropertySignature",
|
|
2539
4384
|
"canonicalReference": "@alloy-js/csharp!InterfaceDeclarationProps#name:member",
|
|
@@ -2799,6 +4644,34 @@
|
|
|
2799
4644
|
"endIndex": 2
|
|
2800
4645
|
}
|
|
2801
4646
|
},
|
|
4647
|
+
{
|
|
4648
|
+
"kind": "PropertySignature",
|
|
4649
|
+
"canonicalReference": "@alloy-js/csharp!InterfaceMethodProps#doc:member",
|
|
4650
|
+
"docComment": "/**\n * Doc comment\n */\n",
|
|
4651
|
+
"excerptTokens": [
|
|
4652
|
+
{
|
|
4653
|
+
"kind": "Content",
|
|
4654
|
+
"text": "doc?: "
|
|
4655
|
+
},
|
|
4656
|
+
{
|
|
4657
|
+
"kind": "Reference",
|
|
4658
|
+
"text": "Children",
|
|
4659
|
+
"canonicalReference": "@alloy-js/core!Children:type"
|
|
4660
|
+
},
|
|
4661
|
+
{
|
|
4662
|
+
"kind": "Content",
|
|
4663
|
+
"text": ";"
|
|
4664
|
+
}
|
|
4665
|
+
],
|
|
4666
|
+
"isReadonly": false,
|
|
4667
|
+
"isOptional": true,
|
|
4668
|
+
"releaseTag": "Public",
|
|
4669
|
+
"name": "doc",
|
|
4670
|
+
"propertyTypeTokenRange": {
|
|
4671
|
+
"startIndex": 1,
|
|
4672
|
+
"endIndex": 2
|
|
4673
|
+
}
|
|
4674
|
+
},
|
|
2802
4675
|
{
|
|
2803
4676
|
"kind": "PropertySignature",
|
|
2804
4677
|
"canonicalReference": "@alloy-js/csharp!InterfaceMethodProps#name:member",
|
|
@@ -2980,6 +4853,119 @@
|
|
|
2980
4853
|
],
|
|
2981
4854
|
"extendsTokenRanges": []
|
|
2982
4855
|
},
|
|
4856
|
+
{
|
|
4857
|
+
"kind": "Function",
|
|
4858
|
+
"canonicalReference": "@alloy-js/csharp!makeDocCommentTag:function(1)",
|
|
4859
|
+
"docComment": "",
|
|
4860
|
+
"excerptTokens": [
|
|
4861
|
+
{
|
|
4862
|
+
"kind": "Content",
|
|
4863
|
+
"text": "export declare function makeDocCommentTag(name: "
|
|
4864
|
+
},
|
|
4865
|
+
{
|
|
4866
|
+
"kind": "Content",
|
|
4867
|
+
"text": "string"
|
|
4868
|
+
},
|
|
4869
|
+
{
|
|
4870
|
+
"kind": "Content",
|
|
4871
|
+
"text": "): "
|
|
4872
|
+
},
|
|
4873
|
+
{
|
|
4874
|
+
"kind": "Content",
|
|
4875
|
+
"text": "(props: "
|
|
4876
|
+
},
|
|
4877
|
+
{
|
|
4878
|
+
"kind": "Reference",
|
|
4879
|
+
"text": "DocCommentProps",
|
|
4880
|
+
"canonicalReference": "@alloy-js/csharp!DocCommentProps:interface"
|
|
4881
|
+
},
|
|
4882
|
+
{
|
|
4883
|
+
"kind": "Content",
|
|
4884
|
+
"text": ") => "
|
|
4885
|
+
},
|
|
4886
|
+
{
|
|
4887
|
+
"kind": "Reference",
|
|
4888
|
+
"text": "Children",
|
|
4889
|
+
"canonicalReference": "@alloy-js/core!Children:type"
|
|
4890
|
+
},
|
|
4891
|
+
{
|
|
4892
|
+
"kind": "Content",
|
|
4893
|
+
"text": ";"
|
|
4894
|
+
}
|
|
4895
|
+
],
|
|
4896
|
+
"fileUrlPath": "src/components/doc/comment.tsx",
|
|
4897
|
+
"returnTypeTokenRange": {
|
|
4898
|
+
"startIndex": 3,
|
|
4899
|
+
"endIndex": 7
|
|
4900
|
+
},
|
|
4901
|
+
"releaseTag": "Public",
|
|
4902
|
+
"overloadIndex": 1,
|
|
4903
|
+
"parameters": [
|
|
4904
|
+
{
|
|
4905
|
+
"parameterName": "name",
|
|
4906
|
+
"parameterTypeTokenRange": {
|
|
4907
|
+
"startIndex": 1,
|
|
4908
|
+
"endIndex": 2
|
|
4909
|
+
},
|
|
4910
|
+
"isOptional": false
|
|
4911
|
+
}
|
|
4912
|
+
],
|
|
4913
|
+
"name": "makeDocCommentTag"
|
|
4914
|
+
},
|
|
4915
|
+
{
|
|
4916
|
+
"kind": "Function",
|
|
4917
|
+
"canonicalReference": "@alloy-js/csharp!makeInlineDocCommentTag:function(1)",
|
|
4918
|
+
"docComment": "",
|
|
4919
|
+
"excerptTokens": [
|
|
4920
|
+
{
|
|
4921
|
+
"kind": "Content",
|
|
4922
|
+
"text": "export declare function makeInlineDocCommentTag(name: "
|
|
4923
|
+
},
|
|
4924
|
+
{
|
|
4925
|
+
"kind": "Content",
|
|
4926
|
+
"text": "string"
|
|
4927
|
+
},
|
|
4928
|
+
{
|
|
4929
|
+
"kind": "Content",
|
|
4930
|
+
"text": "): "
|
|
4931
|
+
},
|
|
4932
|
+
{
|
|
4933
|
+
"kind": "Content",
|
|
4934
|
+
"text": "(props: "
|
|
4935
|
+
},
|
|
4936
|
+
{
|
|
4937
|
+
"kind": "Reference",
|
|
4938
|
+
"text": "DocCommentProps",
|
|
4939
|
+
"canonicalReference": "@alloy-js/csharp!DocCommentProps:interface"
|
|
4940
|
+
},
|
|
4941
|
+
{
|
|
4942
|
+
"kind": "Content",
|
|
4943
|
+
"text": ") => string"
|
|
4944
|
+
},
|
|
4945
|
+
{
|
|
4946
|
+
"kind": "Content",
|
|
4947
|
+
"text": ";"
|
|
4948
|
+
}
|
|
4949
|
+
],
|
|
4950
|
+
"fileUrlPath": "src/components/doc/comment.tsx",
|
|
4951
|
+
"returnTypeTokenRange": {
|
|
4952
|
+
"startIndex": 3,
|
|
4953
|
+
"endIndex": 6
|
|
4954
|
+
},
|
|
4955
|
+
"releaseTag": "Public",
|
|
4956
|
+
"overloadIndex": 1,
|
|
4957
|
+
"parameters": [
|
|
4958
|
+
{
|
|
4959
|
+
"parameterName": "name",
|
|
4960
|
+
"parameterTypeTokenRange": {
|
|
4961
|
+
"startIndex": 1,
|
|
4962
|
+
"endIndex": 2
|
|
4963
|
+
},
|
|
4964
|
+
"isOptional": false
|
|
4965
|
+
}
|
|
4966
|
+
],
|
|
4967
|
+
"name": "makeInlineDocCommentTag"
|
|
4968
|
+
},
|
|
2983
4969
|
{
|
|
2984
4970
|
"kind": "Function",
|
|
2985
4971
|
"canonicalReference": "@alloy-js/csharp!makeModifiers:function(1)",
|