@alloy-js/csharp 0.18.0-dev.5 → 0.18.0-dev.7

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 (54) hide show
  1. package/dist/src/components/ClassDeclaration.d.ts +8 -2
  2. package/dist/src/components/ClassDeclaration.d.ts.map +1 -1
  3. package/dist/src/components/ClassDeclaration.js +3 -2
  4. package/dist/src/components/ClassMethod.d.ts +9 -2
  5. package/dist/src/components/ClassMethod.d.ts.map +1 -1
  6. package/dist/src/components/ClassMethod.js +5 -1
  7. package/dist/src/components/EnumDeclaration.d.ts +2 -2
  8. package/dist/src/components/EnumDeclaration.d.ts.map +1 -1
  9. package/dist/src/components/index.d.ts +3 -1
  10. package/dist/src/components/index.d.ts.map +1 -1
  11. package/dist/src/components/index.js +3 -1
  12. package/dist/src/components/interface/declaration.d.ts +32 -0
  13. package/dist/src/components/interface/declaration.d.ts.map +1 -0
  14. package/dist/src/components/interface/declaration.js +85 -0
  15. package/dist/src/components/interface/declaration.test.d.ts +2 -0
  16. package/dist/src/components/interface/declaration.test.d.ts.map +1 -0
  17. package/dist/src/components/interface/declaration.test.js +56 -0
  18. package/dist/src/components/interface/method.d.ts +16 -0
  19. package/dist/src/components/interface/method.d.ts.map +1 -0
  20. package/dist/src/components/interface/method.js +54 -0
  21. package/dist/src/components/interface/method.test.d.ts +2 -0
  22. package/dist/src/components/interface/method.test.d.ts.map +1 -0
  23. package/dist/src/components/interface/method.test.js +110 -0
  24. package/dist/src/components/interface/property.d.ts +19 -0
  25. package/dist/src/components/interface/property.d.ts.map +1 -0
  26. package/dist/src/components/interface/property.js +54 -0
  27. package/dist/src/components/interface/property.test.d.ts +2 -0
  28. package/dist/src/components/interface/property.test.d.ts.map +1 -0
  29. package/dist/src/components/interface/property.test.js +141 -0
  30. package/dist/src/components/stc/index.d.ts +2 -2
  31. package/dist/src/components/stc/index.d.ts.map +1 -1
  32. package/dist/src/modifiers.d.ts +2 -9
  33. package/dist/src/modifiers.d.ts.map +1 -1
  34. package/dist/src/modifiers.js +6 -9
  35. package/dist/src/name-policy.d.ts +1 -1
  36. package/dist/src/name-policy.d.ts.map +1 -1
  37. package/dist/src/name-policy.js +1 -0
  38. package/dist/test/class.test.js +52 -10
  39. package/dist/tsconfig.tsbuildinfo +1 -1
  40. package/package.json +2 -2
  41. package/src/components/ClassDeclaration.tsx +23 -4
  42. package/src/components/ClassMethod.tsx +19 -3
  43. package/src/components/EnumDeclaration.tsx +2 -2
  44. package/src/components/index.ts +3 -1
  45. package/src/components/interface/declaration.test.tsx +45 -0
  46. package/src/components/interface/declaration.tsx +104 -0
  47. package/src/components/interface/method.test.tsx +104 -0
  48. package/src/components/interface/method.tsx +77 -0
  49. package/src/components/interface/property.test.tsx +122 -0
  50. package/src/components/interface/property.tsx +85 -0
  51. package/src/modifiers.ts +16 -30
  52. package/src/name-policy.ts +2 -0
  53. package/temp/api.json +977 -277
  54. package/test/class.test.tsx +40 -10
package/temp/api.json CHANGED
@@ -540,8 +540,8 @@
540
540
  },
541
541
  {
542
542
  "kind": "Reference",
543
- "text": "ClassProps",
544
- "canonicalReference": "@alloy-js/csharp!ClassProps:interface"
543
+ "text": "ClassDeclarationProps",
544
+ "canonicalReference": "@alloy-js/csharp!ClassDeclarationProps:interface"
545
545
  },
546
546
  {
547
547
  "kind": "Content",
@@ -576,6 +576,173 @@
576
576
  ],
577
577
  "name": "ClassDeclaration"
578
578
  },
579
+ {
580
+ "kind": "Interface",
581
+ "canonicalReference": "@alloy-js/csharp!ClassDeclarationProps:interface",
582
+ "docComment": "",
583
+ "excerptTokens": [
584
+ {
585
+ "kind": "Content",
586
+ "text": "export interface ClassDeclarationProps extends "
587
+ },
588
+ {
589
+ "kind": "Reference",
590
+ "text": "Omit",
591
+ "canonicalReference": "!Omit:type"
592
+ },
593
+ {
594
+ "kind": "Content",
595
+ "text": "<"
596
+ },
597
+ {
598
+ "kind": "Reference",
599
+ "text": "core.DeclarationProps",
600
+ "canonicalReference": "@alloy-js/core!DeclarationProps:type"
601
+ },
602
+ {
603
+ "kind": "Content",
604
+ "text": ", \"nameKind\">"
605
+ },
606
+ {
607
+ "kind": "Content",
608
+ "text": ", "
609
+ },
610
+ {
611
+ "kind": "Reference",
612
+ "text": "AccessModifiers",
613
+ "canonicalReference": "@alloy-js/csharp!AccessModifiers:interface"
614
+ },
615
+ {
616
+ "kind": "Content",
617
+ "text": ", "
618
+ },
619
+ {
620
+ "kind": "Reference",
621
+ "text": "ClassModifiers",
622
+ "canonicalReference": "@alloy-js/csharp!ClassModifiers:interface"
623
+ },
624
+ {
625
+ "kind": "Content",
626
+ "text": " "
627
+ }
628
+ ],
629
+ "fileUrlPath": "src/components/ClassDeclaration.tsx",
630
+ "releaseTag": "Public",
631
+ "name": "ClassDeclarationProps",
632
+ "preserveMemberOrder": false,
633
+ "members": [
634
+ {
635
+ "kind": "PropertySignature",
636
+ "canonicalReference": "@alloy-js/csharp!ClassDeclarationProps#name:member",
637
+ "docComment": "",
638
+ "excerptTokens": [
639
+ {
640
+ "kind": "Content",
641
+ "text": "name: "
642
+ },
643
+ {
644
+ "kind": "Content",
645
+ "text": "string"
646
+ },
647
+ {
648
+ "kind": "Content",
649
+ "text": ";"
650
+ }
651
+ ],
652
+ "isReadonly": false,
653
+ "isOptional": false,
654
+ "releaseTag": "Public",
655
+ "name": "name",
656
+ "propertyTypeTokenRange": {
657
+ "startIndex": 1,
658
+ "endIndex": 2
659
+ }
660
+ },
661
+ {
662
+ "kind": "PropertySignature",
663
+ "canonicalReference": "@alloy-js/csharp!ClassDeclarationProps#refkey:member",
664
+ "docComment": "",
665
+ "excerptTokens": [
666
+ {
667
+ "kind": "Content",
668
+ "text": "refkey?: "
669
+ },
670
+ {
671
+ "kind": "Reference",
672
+ "text": "core.Refkey",
673
+ "canonicalReference": "@alloy-js/core!Refkey:type"
674
+ },
675
+ {
676
+ "kind": "Content",
677
+ "text": ";"
678
+ }
679
+ ],
680
+ "isReadonly": false,
681
+ "isOptional": true,
682
+ "releaseTag": "Public",
683
+ "name": "refkey",
684
+ "propertyTypeTokenRange": {
685
+ "startIndex": 1,
686
+ "endIndex": 2
687
+ }
688
+ },
689
+ {
690
+ "kind": "PropertySignature",
691
+ "canonicalReference": "@alloy-js/csharp!ClassDeclarationProps#typeParameters:member",
692
+ "docComment": "",
693
+ "excerptTokens": [
694
+ {
695
+ "kind": "Content",
696
+ "text": "typeParameters?: "
697
+ },
698
+ {
699
+ "kind": "Reference",
700
+ "text": "Record",
701
+ "canonicalReference": "!Record:type"
702
+ },
703
+ {
704
+ "kind": "Content",
705
+ "text": "<string, "
706
+ },
707
+ {
708
+ "kind": "Reference",
709
+ "text": "core.Refkey",
710
+ "canonicalReference": "@alloy-js/core!Refkey:type"
711
+ },
712
+ {
713
+ "kind": "Content",
714
+ "text": ">"
715
+ },
716
+ {
717
+ "kind": "Content",
718
+ "text": ";"
719
+ }
720
+ ],
721
+ "isReadonly": false,
722
+ "isOptional": true,
723
+ "releaseTag": "Public",
724
+ "name": "typeParameters",
725
+ "propertyTypeTokenRange": {
726
+ "startIndex": 1,
727
+ "endIndex": 5
728
+ }
729
+ }
730
+ ],
731
+ "extendsTokenRanges": [
732
+ {
733
+ "startIndex": 1,
734
+ "endIndex": 5
735
+ },
736
+ {
737
+ "startIndex": 6,
738
+ "endIndex": 7
739
+ },
740
+ {
741
+ "startIndex": 8,
742
+ "endIndex": 9
743
+ }
744
+ ]
745
+ },
579
746
  {
580
747
  "kind": "Function",
581
748
  "canonicalReference": "@alloy-js/csharp!ClassMember:function(1)",
@@ -787,45 +954,27 @@
787
954
  },
788
955
  {
789
956
  "kind": "Interface",
790
- "canonicalReference": "@alloy-js/csharp!ClassMethodProps:interface",
791
- "docComment": "",
957
+ "canonicalReference": "@alloy-js/csharp!ClassMethodModifiers:interface",
958
+ "docComment": "/**\n * Method modifiers. Can only be one.\n */\n",
792
959
  "excerptTokens": [
793
960
  {
794
961
  "kind": "Content",
795
- "text": "export interface ClassMethodProps extends "
796
- },
797
- {
798
- "kind": "Reference",
799
- "text": "AccessModifiers",
800
- "canonicalReference": "@alloy-js/csharp!AccessModifiers:interface"
801
- },
802
- {
803
- "kind": "Content",
804
- "text": ", "
805
- },
806
- {
807
- "kind": "Reference",
808
- "text": "MethodModifiers",
809
- "canonicalReference": "@alloy-js/csharp!MethodModifiers:interface"
810
- },
811
- {
812
- "kind": "Content",
813
- "text": " "
962
+ "text": "export interface ClassMethodModifiers "
814
963
  }
815
964
  ],
816
965
  "fileUrlPath": "src/components/ClassMethod.tsx",
817
966
  "releaseTag": "Public",
818
- "name": "ClassMethodProps",
967
+ "name": "ClassMethodModifiers",
819
968
  "preserveMemberOrder": false,
820
969
  "members": [
821
970
  {
822
971
  "kind": "PropertySignature",
823
- "canonicalReference": "@alloy-js/csharp!ClassMethodProps#async:member",
824
- "docComment": "/**\n * If true, the method will be declared as an async method.\n */\n",
972
+ "canonicalReference": "@alloy-js/csharp!ClassMethodModifiers#abstract:member",
973
+ "docComment": "",
825
974
  "excerptTokens": [
826
975
  {
827
976
  "kind": "Content",
828
- "text": "async?: "
977
+ "text": "readonly abstract?: "
829
978
  },
830
979
  {
831
980
  "kind": "Content",
@@ -836,10 +985,10 @@
836
985
  "text": ";"
837
986
  }
838
987
  ],
839
- "isReadonly": false,
988
+ "isReadonly": true,
840
989
  "isOptional": true,
841
990
  "releaseTag": "Public",
842
- "name": "async",
991
+ "name": "abstract",
843
992
  "propertyTypeTokenRange": {
844
993
  "startIndex": 1,
845
994
  "endIndex": 2
@@ -847,27 +996,26 @@
847
996
  },
848
997
  {
849
998
  "kind": "PropertySignature",
850
- "canonicalReference": "@alloy-js/csharp!ClassMethodProps#children:member",
999
+ "canonicalReference": "@alloy-js/csharp!ClassMethodModifiers#sealed:member",
851
1000
  "docComment": "",
852
1001
  "excerptTokens": [
853
1002
  {
854
1003
  "kind": "Content",
855
- "text": "children?: "
1004
+ "text": "readonly sealed?: "
856
1005
  },
857
1006
  {
858
- "kind": "Reference",
859
- "text": "Children",
860
- "canonicalReference": "@alloy-js/core!Children:type"
1007
+ "kind": "Content",
1008
+ "text": "boolean"
861
1009
  },
862
1010
  {
863
1011
  "kind": "Content",
864
1012
  "text": ";"
865
1013
  }
866
1014
  ],
867
- "isReadonly": false,
1015
+ "isReadonly": true,
868
1016
  "isOptional": true,
869
1017
  "releaseTag": "Public",
870
- "name": "children",
1018
+ "name": "sealed",
871
1019
  "propertyTypeTokenRange": {
872
1020
  "startIndex": 1,
873
1021
  "endIndex": 2
@@ -875,26 +1023,26 @@
875
1023
  },
876
1024
  {
877
1025
  "kind": "PropertySignature",
878
- "canonicalReference": "@alloy-js/csharp!ClassMethodProps#name:member",
1026
+ "canonicalReference": "@alloy-js/csharp!ClassMethodModifiers#static:member",
879
1027
  "docComment": "",
880
1028
  "excerptTokens": [
881
1029
  {
882
1030
  "kind": "Content",
883
- "text": "name: "
1031
+ "text": "readonly static?: "
884
1032
  },
885
1033
  {
886
1034
  "kind": "Content",
887
- "text": "string"
1035
+ "text": "boolean"
888
1036
  },
889
1037
  {
890
1038
  "kind": "Content",
891
1039
  "text": ";"
892
1040
  }
893
1041
  ],
894
- "isReadonly": false,
895
- "isOptional": false,
1042
+ "isReadonly": true,
1043
+ "isOptional": true,
896
1044
  "releaseTag": "Public",
897
- "name": "name",
1045
+ "name": "static",
898
1046
  "propertyTypeTokenRange": {
899
1047
  "startIndex": 1,
900
1048
  "endIndex": 2
@@ -902,55 +1050,200 @@
902
1050
  },
903
1051
  {
904
1052
  "kind": "PropertySignature",
905
- "canonicalReference": "@alloy-js/csharp!ClassMethodProps#parameters:member",
1053
+ "canonicalReference": "@alloy-js/csharp!ClassMethodModifiers#virtual:member",
906
1054
  "docComment": "",
907
1055
  "excerptTokens": [
908
1056
  {
909
1057
  "kind": "Content",
910
- "text": "parameters?: "
911
- },
912
- {
913
- "kind": "Reference",
914
- "text": "Array",
915
- "canonicalReference": "!Array:interface"
916
- },
917
- {
918
- "kind": "Content",
919
- "text": "<"
920
- },
921
- {
922
- "kind": "Reference",
923
- "text": "ParameterProps",
924
- "canonicalReference": "@alloy-js/csharp!ParameterProps:interface"
1058
+ "text": "readonly virtual?: "
925
1059
  },
926
1060
  {
927
1061
  "kind": "Content",
928
- "text": ">"
1062
+ "text": "boolean"
929
1063
  },
930
1064
  {
931
1065
  "kind": "Content",
932
1066
  "text": ";"
933
1067
  }
934
1068
  ],
935
- "isReadonly": false,
1069
+ "isReadonly": true,
936
1070
  "isOptional": true,
937
1071
  "releaseTag": "Public",
938
- "name": "parameters",
1072
+ "name": "virtual",
939
1073
  "propertyTypeTokenRange": {
940
1074
  "startIndex": 1,
941
- "endIndex": 5
1075
+ "endIndex": 2
942
1076
  }
1077
+ }
1078
+ ],
1079
+ "extendsTokenRanges": []
1080
+ },
1081
+ {
1082
+ "kind": "Interface",
1083
+ "canonicalReference": "@alloy-js/csharp!ClassMethodProps:interface",
1084
+ "docComment": "",
1085
+ "excerptTokens": [
1086
+ {
1087
+ "kind": "Content",
1088
+ "text": "export interface ClassMethodProps extends "
943
1089
  },
944
1090
  {
945
- "kind": "PropertySignature",
946
- "canonicalReference": "@alloy-js/csharp!ClassMethodProps#refkey:member",
947
- "docComment": "",
948
- "excerptTokens": [
949
- {
950
- "kind": "Content",
951
- "text": "refkey?: "
952
- },
953
- {
1091
+ "kind": "Reference",
1092
+ "text": "AccessModifiers",
1093
+ "canonicalReference": "@alloy-js/csharp!AccessModifiers:interface"
1094
+ },
1095
+ {
1096
+ "kind": "Content",
1097
+ "text": ", "
1098
+ },
1099
+ {
1100
+ "kind": "Reference",
1101
+ "text": "ClassMethodModifiers",
1102
+ "canonicalReference": "@alloy-js/csharp!ClassMethodModifiers:interface"
1103
+ },
1104
+ {
1105
+ "kind": "Content",
1106
+ "text": " "
1107
+ }
1108
+ ],
1109
+ "fileUrlPath": "src/components/ClassMethod.tsx",
1110
+ "releaseTag": "Public",
1111
+ "name": "ClassMethodProps",
1112
+ "preserveMemberOrder": false,
1113
+ "members": [
1114
+ {
1115
+ "kind": "PropertySignature",
1116
+ "canonicalReference": "@alloy-js/csharp!ClassMethodProps#async:member",
1117
+ "docComment": "/**\n * If true, the method will be declared as an async method.\n */\n",
1118
+ "excerptTokens": [
1119
+ {
1120
+ "kind": "Content",
1121
+ "text": "async?: "
1122
+ },
1123
+ {
1124
+ "kind": "Content",
1125
+ "text": "boolean"
1126
+ },
1127
+ {
1128
+ "kind": "Content",
1129
+ "text": ";"
1130
+ }
1131
+ ],
1132
+ "isReadonly": false,
1133
+ "isOptional": true,
1134
+ "releaseTag": "Public",
1135
+ "name": "async",
1136
+ "propertyTypeTokenRange": {
1137
+ "startIndex": 1,
1138
+ "endIndex": 2
1139
+ }
1140
+ },
1141
+ {
1142
+ "kind": "PropertySignature",
1143
+ "canonicalReference": "@alloy-js/csharp!ClassMethodProps#children:member",
1144
+ "docComment": "",
1145
+ "excerptTokens": [
1146
+ {
1147
+ "kind": "Content",
1148
+ "text": "children?: "
1149
+ },
1150
+ {
1151
+ "kind": "Reference",
1152
+ "text": "Children",
1153
+ "canonicalReference": "@alloy-js/core!Children:type"
1154
+ },
1155
+ {
1156
+ "kind": "Content",
1157
+ "text": ";"
1158
+ }
1159
+ ],
1160
+ "isReadonly": false,
1161
+ "isOptional": true,
1162
+ "releaseTag": "Public",
1163
+ "name": "children",
1164
+ "propertyTypeTokenRange": {
1165
+ "startIndex": 1,
1166
+ "endIndex": 2
1167
+ }
1168
+ },
1169
+ {
1170
+ "kind": "PropertySignature",
1171
+ "canonicalReference": "@alloy-js/csharp!ClassMethodProps#name:member",
1172
+ "docComment": "",
1173
+ "excerptTokens": [
1174
+ {
1175
+ "kind": "Content",
1176
+ "text": "name: "
1177
+ },
1178
+ {
1179
+ "kind": "Content",
1180
+ "text": "string"
1181
+ },
1182
+ {
1183
+ "kind": "Content",
1184
+ "text": ";"
1185
+ }
1186
+ ],
1187
+ "isReadonly": false,
1188
+ "isOptional": false,
1189
+ "releaseTag": "Public",
1190
+ "name": "name",
1191
+ "propertyTypeTokenRange": {
1192
+ "startIndex": 1,
1193
+ "endIndex": 2
1194
+ }
1195
+ },
1196
+ {
1197
+ "kind": "PropertySignature",
1198
+ "canonicalReference": "@alloy-js/csharp!ClassMethodProps#parameters:member",
1199
+ "docComment": "",
1200
+ "excerptTokens": [
1201
+ {
1202
+ "kind": "Content",
1203
+ "text": "parameters?: "
1204
+ },
1205
+ {
1206
+ "kind": "Reference",
1207
+ "text": "Array",
1208
+ "canonicalReference": "!Array:interface"
1209
+ },
1210
+ {
1211
+ "kind": "Content",
1212
+ "text": "<"
1213
+ },
1214
+ {
1215
+ "kind": "Reference",
1216
+ "text": "ParameterProps",
1217
+ "canonicalReference": "@alloy-js/csharp!ParameterProps:interface"
1218
+ },
1219
+ {
1220
+ "kind": "Content",
1221
+ "text": ">"
1222
+ },
1223
+ {
1224
+ "kind": "Content",
1225
+ "text": ";"
1226
+ }
1227
+ ],
1228
+ "isReadonly": false,
1229
+ "isOptional": true,
1230
+ "releaseTag": "Public",
1231
+ "name": "parameters",
1232
+ "propertyTypeTokenRange": {
1233
+ "startIndex": 1,
1234
+ "endIndex": 5
1235
+ }
1236
+ },
1237
+ {
1238
+ "kind": "PropertySignature",
1239
+ "canonicalReference": "@alloy-js/csharp!ClassMethodProps#refkey:member",
1240
+ "docComment": "",
1241
+ "excerptTokens": [
1242
+ {
1243
+ "kind": "Content",
1244
+ "text": "refkey?: "
1245
+ },
1246
+ {
954
1247
  "kind": "Reference",
955
1248
  "text": "Refkey",
956
1249
  "canonicalReference": "@alloy-js/core!Refkey:type"
@@ -1011,72 +1304,41 @@
1011
1304
  },
1012
1305
  {
1013
1306
  "kind": "Interface",
1014
- "canonicalReference": "@alloy-js/csharp!ClassProps:interface",
1307
+ "canonicalReference": "@alloy-js/csharp!ClassModifiers:interface",
1015
1308
  "docComment": "",
1016
1309
  "excerptTokens": [
1017
1310
  {
1018
1311
  "kind": "Content",
1019
- "text": "export interface ClassProps extends "
1020
- },
1021
- {
1022
- "kind": "Reference",
1023
- "text": "Omit",
1024
- "canonicalReference": "!Omit:type"
1025
- },
1026
- {
1027
- "kind": "Content",
1028
- "text": "<"
1029
- },
1030
- {
1031
- "kind": "Reference",
1032
- "text": "core.DeclarationProps",
1033
- "canonicalReference": "@alloy-js/core!DeclarationProps:type"
1034
- },
1035
- {
1036
- "kind": "Content",
1037
- "text": ", \"nameKind\">"
1038
- },
1039
- {
1040
- "kind": "Content",
1041
- "text": ", "
1042
- },
1043
- {
1044
- "kind": "Reference",
1045
- "text": "AccessModifiers",
1046
- "canonicalReference": "@alloy-js/csharp!AccessModifiers:interface"
1047
- },
1048
- {
1049
- "kind": "Content",
1050
- "text": " "
1312
+ "text": "export interface ClassModifiers "
1051
1313
  }
1052
1314
  ],
1053
1315
  "fileUrlPath": "src/components/ClassDeclaration.tsx",
1054
1316
  "releaseTag": "Public",
1055
- "name": "ClassProps",
1317
+ "name": "ClassModifiers",
1056
1318
  "preserveMemberOrder": false,
1057
1319
  "members": [
1058
1320
  {
1059
1321
  "kind": "PropertySignature",
1060
- "canonicalReference": "@alloy-js/csharp!ClassProps#name:member",
1322
+ "canonicalReference": "@alloy-js/csharp!ClassModifiers#abstract:member",
1061
1323
  "docComment": "",
1062
1324
  "excerptTokens": [
1063
1325
  {
1064
1326
  "kind": "Content",
1065
- "text": "name: "
1327
+ "text": "readonly abstract?: "
1066
1328
  },
1067
1329
  {
1068
1330
  "kind": "Content",
1069
- "text": "string"
1331
+ "text": "boolean"
1070
1332
  },
1071
1333
  {
1072
1334
  "kind": "Content",
1073
1335
  "text": ";"
1074
1336
  }
1075
1337
  ],
1076
- "isReadonly": false,
1077
- "isOptional": false,
1338
+ "isReadonly": true,
1339
+ "isOptional": true,
1078
1340
  "releaseTag": "Public",
1079
- "name": "name",
1341
+ "name": "abstract",
1080
1342
  "propertyTypeTokenRange": {
1081
1343
  "startIndex": 1,
1082
1344
  "endIndex": 2
@@ -1084,27 +1346,26 @@
1084
1346
  },
1085
1347
  {
1086
1348
  "kind": "PropertySignature",
1087
- "canonicalReference": "@alloy-js/csharp!ClassProps#refkey:member",
1349
+ "canonicalReference": "@alloy-js/csharp!ClassModifiers#partial:member",
1088
1350
  "docComment": "",
1089
1351
  "excerptTokens": [
1090
1352
  {
1091
1353
  "kind": "Content",
1092
- "text": "refkey?: "
1354
+ "text": "readonly partial?: "
1093
1355
  },
1094
1356
  {
1095
- "kind": "Reference",
1096
- "text": "core.Refkey",
1097
- "canonicalReference": "@alloy-js/core!Refkey:type"
1357
+ "kind": "Content",
1358
+ "text": "boolean"
1098
1359
  },
1099
1360
  {
1100
1361
  "kind": "Content",
1101
1362
  "text": ";"
1102
1363
  }
1103
1364
  ],
1104
- "isReadonly": false,
1365
+ "isReadonly": true,
1105
1366
  "isOptional": true,
1106
1367
  "releaseTag": "Public",
1107
- "name": "refkey",
1368
+ "name": "partial",
1108
1369
  "propertyTypeTokenRange": {
1109
1370
  "startIndex": 1,
1110
1371
  "endIndex": 2
@@ -1112,56 +1373,60 @@
1112
1373
  },
1113
1374
  {
1114
1375
  "kind": "PropertySignature",
1115
- "canonicalReference": "@alloy-js/csharp!ClassProps#typeParameters:member",
1376
+ "canonicalReference": "@alloy-js/csharp!ClassModifiers#sealed:member",
1116
1377
  "docComment": "",
1117
1378
  "excerptTokens": [
1118
1379
  {
1119
1380
  "kind": "Content",
1120
- "text": "typeParameters?: "
1381
+ "text": "readonly sealed?: "
1121
1382
  },
1122
1383
  {
1123
- "kind": "Reference",
1124
- "text": "Record",
1125
- "canonicalReference": "!Record:type"
1384
+ "kind": "Content",
1385
+ "text": "boolean"
1126
1386
  },
1127
1387
  {
1128
1388
  "kind": "Content",
1129
- "text": "<string, "
1130
- },
1389
+ "text": ";"
1390
+ }
1391
+ ],
1392
+ "isReadonly": true,
1393
+ "isOptional": true,
1394
+ "releaseTag": "Public",
1395
+ "name": "sealed",
1396
+ "propertyTypeTokenRange": {
1397
+ "startIndex": 1,
1398
+ "endIndex": 2
1399
+ }
1400
+ },
1401
+ {
1402
+ "kind": "PropertySignature",
1403
+ "canonicalReference": "@alloy-js/csharp!ClassModifiers#static:member",
1404
+ "docComment": "",
1405
+ "excerptTokens": [
1131
1406
  {
1132
- "kind": "Reference",
1133
- "text": "core.Refkey",
1134
- "canonicalReference": "@alloy-js/core!Refkey:type"
1407
+ "kind": "Content",
1408
+ "text": "readonly static?: "
1135
1409
  },
1136
1410
  {
1137
1411
  "kind": "Content",
1138
- "text": ">"
1412
+ "text": "boolean"
1139
1413
  },
1140
1414
  {
1141
1415
  "kind": "Content",
1142
1416
  "text": ";"
1143
1417
  }
1144
1418
  ],
1145
- "isReadonly": false,
1419
+ "isReadonly": true,
1146
1420
  "isOptional": true,
1147
1421
  "releaseTag": "Public",
1148
- "name": "typeParameters",
1422
+ "name": "static",
1149
1423
  "propertyTypeTokenRange": {
1150
1424
  "startIndex": 1,
1151
- "endIndex": 5
1425
+ "endIndex": 2
1152
1426
  }
1153
1427
  }
1154
1428
  ],
1155
- "extendsTokenRanges": [
1156
- {
1157
- "startIndex": 1,
1158
- "endIndex": 5
1159
- },
1160
- {
1161
- "startIndex": 6,
1162
- "endIndex": 7
1163
- }
1164
- ]
1429
+ "extendsTokenRanges": []
1165
1430
  },
1166
1431
  {
1167
1432
  "kind": "Function",
@@ -1266,7 +1531,7 @@
1266
1531
  },
1267
1532
  {
1268
1533
  "kind": "Content",
1269
- "text": "\"class\" | \"constant\" | \"enum\" | \"enum-member\" | \"function\" | \"interface\" | \"class-member-private\" | \"class-member-public\" | \"class-method\" | \"parameter\" | \"type-parameter\""
1534
+ "text": "\"class\" | \"constant\" | \"enum\" | \"enum-member\" | \"function\" | \"interface\" | \"class-member-private\" | \"class-member-public\" | \"class-method\" | \"class-property\" | \"parameter\" | \"type-parameter\""
1270
1535
  },
1271
1536
  {
1272
1537
  "kind": "Content",
@@ -1809,8 +2074,8 @@
1809
2074
  },
1810
2075
  {
1811
2076
  "kind": "Reference",
1812
- "text": "EnumProps",
1813
- "canonicalReference": "@alloy-js/csharp!EnumProps:interface"
2077
+ "text": "EnumDeclarationProps",
2078
+ "canonicalReference": "@alloy-js/csharp!EnumDeclarationProps:interface"
1814
2079
  },
1815
2080
  {
1816
2081
  "kind": "Content",
@@ -1846,70 +2111,60 @@
1846
2111
  "name": "EnumDeclaration"
1847
2112
  },
1848
2113
  {
1849
- "kind": "Function",
1850
- "canonicalReference": "@alloy-js/csharp!EnumMember:function(1)",
2114
+ "kind": "Interface",
2115
+ "canonicalReference": "@alloy-js/csharp!EnumDeclarationProps:interface",
1851
2116
  "docComment": "",
1852
2117
  "excerptTokens": [
1853
2118
  {
1854
2119
  "kind": "Content",
1855
- "text": "export declare function EnumMember(props: "
1856
- },
1857
- {
1858
- "kind": "Reference",
1859
- "text": "EnumMemberProps",
1860
- "canonicalReference": "@alloy-js/csharp!EnumMemberProps:interface"
1861
- },
1862
- {
1863
- "kind": "Content",
1864
- "text": "): "
2120
+ "text": "export interface EnumDeclarationProps extends "
1865
2121
  },
1866
2122
  {
1867
2123
  "kind": "Reference",
1868
- "text": "core.Children",
1869
- "canonicalReference": "@alloy-js/core!Children:type"
2124
+ "text": "AccessModifiers",
2125
+ "canonicalReference": "@alloy-js/csharp!AccessModifiers:interface"
1870
2126
  },
1871
2127
  {
1872
2128
  "kind": "Content",
1873
- "text": ";"
2129
+ "text": " "
1874
2130
  }
1875
2131
  ],
1876
2132
  "fileUrlPath": "src/components/EnumDeclaration.tsx",
1877
- "returnTypeTokenRange": {
1878
- "startIndex": 3,
1879
- "endIndex": 4
1880
- },
1881
2133
  "releaseTag": "Public",
1882
- "overloadIndex": 1,
1883
- "parameters": [
2134
+ "name": "EnumDeclarationProps",
2135
+ "preserveMemberOrder": false,
2136
+ "members": [
1884
2137
  {
1885
- "parameterName": "props",
1886
- "parameterTypeTokenRange": {
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": {
1887
2161
  "startIndex": 1,
1888
2162
  "endIndex": 2
1889
- },
1890
- "isOptional": false
1891
- }
1892
- ],
1893
- "name": "EnumMember"
1894
- },
1895
- {
1896
- "kind": "Interface",
1897
- "canonicalReference": "@alloy-js/csharp!EnumMemberProps:interface",
1898
- "docComment": "",
1899
- "excerptTokens": [
1900
- {
1901
- "kind": "Content",
1902
- "text": "export interface EnumMemberProps "
1903
- }
1904
- ],
1905
- "fileUrlPath": "src/components/EnumDeclaration.tsx",
1906
- "releaseTag": "Public",
1907
- "name": "EnumMemberProps",
1908
- "preserveMemberOrder": false,
1909
- "members": [
2163
+ }
2164
+ },
1910
2165
  {
1911
2166
  "kind": "PropertySignature",
1912
- "canonicalReference": "@alloy-js/csharp!EnumMemberProps#name:member",
2167
+ "canonicalReference": "@alloy-js/csharp!EnumDeclarationProps#name:member",
1913
2168
  "docComment": "",
1914
2169
  "excerptTokens": [
1915
2170
  {
@@ -1936,7 +2191,7 @@
1936
2191
  },
1937
2192
  {
1938
2193
  "kind": "PropertySignature",
1939
- "canonicalReference": "@alloy-js/csharp!EnumMemberProps#refkey:member",
2194
+ "canonicalReference": "@alloy-js/csharp!EnumDeclarationProps#refkey:member",
1940
2195
  "docComment": "",
1941
2196
  "excerptTokens": [
1942
2197
  {
@@ -1963,63 +2218,78 @@
1963
2218
  }
1964
2219
  }
1965
2220
  ],
1966
- "extendsTokenRanges": []
2221
+ "extendsTokenRanges": [
2222
+ {
2223
+ "startIndex": 1,
2224
+ "endIndex": 2
2225
+ }
2226
+ ]
1967
2227
  },
1968
2228
  {
1969
- "kind": "Interface",
1970
- "canonicalReference": "@alloy-js/csharp!EnumProps:interface",
2229
+ "kind": "Function",
2230
+ "canonicalReference": "@alloy-js/csharp!EnumMember:function(1)",
1971
2231
  "docComment": "",
1972
2232
  "excerptTokens": [
1973
2233
  {
1974
2234
  "kind": "Content",
1975
- "text": "export interface EnumProps extends "
2235
+ "text": "export declare function EnumMember(props: "
1976
2236
  },
1977
2237
  {
1978
2238
  "kind": "Reference",
1979
- "text": "AccessModifiers",
1980
- "canonicalReference": "@alloy-js/csharp!AccessModifiers:interface"
2239
+ "text": "EnumMemberProps",
2240
+ "canonicalReference": "@alloy-js/csharp!EnumMemberProps:interface"
1981
2241
  },
1982
2242
  {
1983
2243
  "kind": "Content",
1984
- "text": " "
2244
+ "text": "): "
2245
+ },
2246
+ {
2247
+ "kind": "Reference",
2248
+ "text": "core.Children",
2249
+ "canonicalReference": "@alloy-js/core!Children:type"
2250
+ },
2251
+ {
2252
+ "kind": "Content",
2253
+ "text": ";"
1985
2254
  }
1986
2255
  ],
1987
2256
  "fileUrlPath": "src/components/EnumDeclaration.tsx",
2257
+ "returnTypeTokenRange": {
2258
+ "startIndex": 3,
2259
+ "endIndex": 4
2260
+ },
1988
2261
  "releaseTag": "Public",
1989
- "name": "EnumProps",
1990
- "preserveMemberOrder": false,
1991
- "members": [
2262
+ "overloadIndex": 1,
2263
+ "parameters": [
1992
2264
  {
1993
- "kind": "PropertySignature",
1994
- "canonicalReference": "@alloy-js/csharp!EnumProps#children:member",
1995
- "docComment": "",
1996
- "excerptTokens": [
1997
- {
1998
- "kind": "Content",
1999
- "text": "children?: "
2000
- },
2001
- {
2002
- "kind": "Reference",
2003
- "text": "core.Children",
2004
- "canonicalReference": "@alloy-js/core!Children:type"
2005
- },
2006
- {
2007
- "kind": "Content",
2008
- "text": ";"
2009
- }
2010
- ],
2011
- "isReadonly": false,
2012
- "isOptional": true,
2013
- "releaseTag": "Public",
2014
- "name": "children",
2015
- "propertyTypeTokenRange": {
2265
+ "parameterName": "props",
2266
+ "parameterTypeTokenRange": {
2016
2267
  "startIndex": 1,
2017
2268
  "endIndex": 2
2018
- }
2019
- },
2269
+ },
2270
+ "isOptional": false
2271
+ }
2272
+ ],
2273
+ "name": "EnumMember"
2274
+ },
2275
+ {
2276
+ "kind": "Interface",
2277
+ "canonicalReference": "@alloy-js/csharp!EnumMemberProps:interface",
2278
+ "docComment": "",
2279
+ "excerptTokens": [
2280
+ {
2281
+ "kind": "Content",
2282
+ "text": "export interface EnumMemberProps "
2283
+ }
2284
+ ],
2285
+ "fileUrlPath": "src/components/EnumDeclaration.tsx",
2286
+ "releaseTag": "Public",
2287
+ "name": "EnumMemberProps",
2288
+ "preserveMemberOrder": false,
2289
+ "members": [
2020
2290
  {
2021
2291
  "kind": "PropertySignature",
2022
- "canonicalReference": "@alloy-js/csharp!EnumProps#name:member",
2292
+ "canonicalReference": "@alloy-js/csharp!EnumMemberProps#name:member",
2023
2293
  "docComment": "",
2024
2294
  "excerptTokens": [
2025
2295
  {
@@ -2046,7 +2316,7 @@
2046
2316
  },
2047
2317
  {
2048
2318
  "kind": "PropertySignature",
2049
- "canonicalReference": "@alloy-js/csharp!EnumProps#refkey:member",
2319
+ "canonicalReference": "@alloy-js/csharp!EnumMemberProps#refkey:member",
2050
2320
  "docComment": "",
2051
2321
  "excerptTokens": [
2052
2322
  {
@@ -2073,12 +2343,7 @@
2073
2343
  }
2074
2344
  }
2075
2345
  ],
2076
- "extendsTokenRanges": [
2077
- {
2078
- "startIndex": 1,
2079
- "endIndex": 2
2080
- }
2081
- ]
2346
+ "extendsTokenRanges": []
2082
2347
  },
2083
2348
  {
2084
2349
  "kind": "Function",
@@ -2087,7 +2352,7 @@
2087
2352
  "excerptTokens": [
2088
2353
  {
2089
2354
  "kind": "Content",
2090
- "text": "export declare function getAccessModifier(data: "
2355
+ "text": "getAccessModifier: (data: "
2091
2356
  },
2092
2357
  {
2093
2358
  "kind": "Reference",
@@ -2096,15 +2361,11 @@
2096
2361
  },
2097
2362
  {
2098
2363
  "kind": "Content",
2099
- "text": "): "
2364
+ "text": ") => "
2100
2365
  },
2101
2366
  {
2102
2367
  "kind": "Content",
2103
2368
  "text": "string"
2104
- },
2105
- {
2106
- "kind": "Content",
2107
- "text": ";"
2108
2369
  }
2109
2370
  ],
2110
2371
  "fileUrlPath": "src/modifiers.ts",
@@ -2173,32 +2434,33 @@
2173
2434
  },
2174
2435
  {
2175
2436
  "kind": "Function",
2176
- "canonicalReference": "@alloy-js/csharp!getMethodModifier:function(1)",
2177
- "docComment": "",
2437
+ "canonicalReference": "@alloy-js/csharp!InterfaceDeclaration:function(1)",
2438
+ "docComment": "/**\n * CSharp interface declaration.\n *\n * @example\n * ```tsx\n * <InterfaceDeclaration public name=\"IMyInterface\">\n * <InterfaceMember public name=\"MyProperty\" type=\"int\" />\n * <InterfaceMethod public name=\"MyMethod\" returnType=\"void\">\n * <Parameter name=\"value\" type=\"int\" />\n * </InterfaceMethod>\n * </InterfaceDeclaration>\n * ```\n *\n * This will produce:\n * ```csharp\n * public interface MyIface\n * {\n * public int MyProperty { get; set; }\n * public void MyMethod(int value);\n * }\n * ```\n *\n */\n",
2178
2439
  "excerptTokens": [
2179
2440
  {
2180
2441
  "kind": "Content",
2181
- "text": "export declare function getMethodModifier(data: "
2442
+ "text": "export declare function InterfaceDeclaration(props: "
2182
2443
  },
2183
2444
  {
2184
2445
  "kind": "Reference",
2185
- "text": "MethodModifiers",
2186
- "canonicalReference": "@alloy-js/csharp!MethodModifiers:interface"
2446
+ "text": "InterfaceDeclarationProps",
2447
+ "canonicalReference": "@alloy-js/csharp!InterfaceDeclarationProps:interface"
2187
2448
  },
2188
2449
  {
2189
2450
  "kind": "Content",
2190
2451
  "text": "): "
2191
2452
  },
2192
2453
  {
2193
- "kind": "Content",
2194
- "text": "string"
2454
+ "kind": "Reference",
2455
+ "text": "core.Children",
2456
+ "canonicalReference": "@alloy-js/core!Children:type"
2195
2457
  },
2196
2458
  {
2197
2459
  "kind": "Content",
2198
2460
  "text": ";"
2199
2461
  }
2200
2462
  ],
2201
- "fileUrlPath": "src/modifiers.ts",
2463
+ "fileUrlPath": "src/components/interface/declaration.tsx",
2202
2464
  "returnTypeTokenRange": {
2203
2465
  "startIndex": 3,
2204
2466
  "endIndex": 4
@@ -2207,7 +2469,7 @@
2207
2469
  "overloadIndex": 1,
2208
2470
  "parameters": [
2209
2471
  {
2210
- "parameterName": "data",
2472
+ "parameterName": "props",
2211
2473
  "parameterTypeTokenRange": {
2212
2474
  "startIndex": 1,
2213
2475
  "endIndex": 2
@@ -2215,45 +2477,85 @@
2215
2477
  "isOptional": false
2216
2478
  }
2217
2479
  ],
2218
- "name": "getMethodModifier"
2480
+ "name": "InterfaceDeclaration"
2219
2481
  },
2220
2482
  {
2221
2483
  "kind": "Interface",
2222
- "canonicalReference": "@alloy-js/csharp!MethodModifiers:interface",
2223
- "docComment": "/**\n * Method modifiers. Can only be one.\n */\n",
2484
+ "canonicalReference": "@alloy-js/csharp!InterfaceDeclarationProps:interface",
2485
+ "docComment": "",
2224
2486
  "excerptTokens": [
2225
2487
  {
2226
2488
  "kind": "Content",
2227
- "text": "export interface MethodModifiers "
2489
+ "text": "export interface InterfaceDeclarationProps extends "
2490
+ },
2491
+ {
2492
+ "kind": "Reference",
2493
+ "text": "Omit",
2494
+ "canonicalReference": "!Omit:type"
2495
+ },
2496
+ {
2497
+ "kind": "Content",
2498
+ "text": "<"
2499
+ },
2500
+ {
2501
+ "kind": "Reference",
2502
+ "text": "core.DeclarationProps",
2503
+ "canonicalReference": "@alloy-js/core!DeclarationProps:type"
2504
+ },
2505
+ {
2506
+ "kind": "Content",
2507
+ "text": ", \"nameKind\">"
2508
+ },
2509
+ {
2510
+ "kind": "Content",
2511
+ "text": ", "
2512
+ },
2513
+ {
2514
+ "kind": "Reference",
2515
+ "text": "AccessModifiers",
2516
+ "canonicalReference": "@alloy-js/csharp!AccessModifiers:interface"
2517
+ },
2518
+ {
2519
+ "kind": "Content",
2520
+ "text": ", "
2521
+ },
2522
+ {
2523
+ "kind": "Reference",
2524
+ "text": "InterfaceModifiers",
2525
+ "canonicalReference": "@alloy-js/csharp!InterfaceModifiers:interface"
2526
+ },
2527
+ {
2528
+ "kind": "Content",
2529
+ "text": " "
2228
2530
  }
2229
2531
  ],
2230
- "fileUrlPath": "src/modifiers.ts",
2532
+ "fileUrlPath": "src/components/interface/declaration.tsx",
2231
2533
  "releaseTag": "Public",
2232
- "name": "MethodModifiers",
2534
+ "name": "InterfaceDeclarationProps",
2233
2535
  "preserveMemberOrder": false,
2234
2536
  "members": [
2235
2537
  {
2236
2538
  "kind": "PropertySignature",
2237
- "canonicalReference": "@alloy-js/csharp!MethodModifiers#abstract:member",
2539
+ "canonicalReference": "@alloy-js/csharp!InterfaceDeclarationProps#name:member",
2238
2540
  "docComment": "",
2239
2541
  "excerptTokens": [
2240
2542
  {
2241
2543
  "kind": "Content",
2242
- "text": "readonly abstract?: "
2544
+ "text": "name: "
2243
2545
  },
2244
2546
  {
2245
2547
  "kind": "Content",
2246
- "text": "boolean"
2548
+ "text": "string"
2247
2549
  },
2248
2550
  {
2249
2551
  "kind": "Content",
2250
2552
  "text": ";"
2251
2553
  }
2252
2554
  ],
2253
- "isReadonly": true,
2254
- "isOptional": true,
2555
+ "isReadonly": false,
2556
+ "isOptional": false,
2255
2557
  "releaseTag": "Public",
2256
- "name": "abstract",
2558
+ "name": "name",
2257
2559
  "propertyTypeTokenRange": {
2258
2560
  "startIndex": 1,
2259
2561
  "endIndex": 2
@@ -2261,26 +2563,27 @@
2261
2563
  },
2262
2564
  {
2263
2565
  "kind": "PropertySignature",
2264
- "canonicalReference": "@alloy-js/csharp!MethodModifiers#sealed:member",
2566
+ "canonicalReference": "@alloy-js/csharp!InterfaceDeclarationProps#refkey:member",
2265
2567
  "docComment": "",
2266
2568
  "excerptTokens": [
2267
2569
  {
2268
2570
  "kind": "Content",
2269
- "text": "readonly sealed?: "
2571
+ "text": "refkey?: "
2270
2572
  },
2271
2573
  {
2272
- "kind": "Content",
2273
- "text": "boolean"
2574
+ "kind": "Reference",
2575
+ "text": "core.Refkey",
2576
+ "canonicalReference": "@alloy-js/core!Refkey:type"
2274
2577
  },
2275
2578
  {
2276
2579
  "kind": "Content",
2277
2580
  "text": ";"
2278
2581
  }
2279
2582
  ],
2280
- "isReadonly": true,
2583
+ "isReadonly": false,
2281
2584
  "isOptional": true,
2282
2585
  "releaseTag": "Public",
2283
- "name": "sealed",
2586
+ "name": "refkey",
2284
2587
  "propertyTypeTokenRange": {
2285
2588
  "startIndex": 1,
2286
2589
  "endIndex": 2
@@ -2288,39 +2591,373 @@
2288
2591
  },
2289
2592
  {
2290
2593
  "kind": "PropertySignature",
2291
- "canonicalReference": "@alloy-js/csharp!MethodModifiers#static:member",
2594
+ "canonicalReference": "@alloy-js/csharp!InterfaceDeclarationProps#typeParameters:member",
2292
2595
  "docComment": "",
2293
2596
  "excerptTokens": [
2294
2597
  {
2295
2598
  "kind": "Content",
2296
- "text": "readonly static?: "
2599
+ "text": "typeParameters?: "
2600
+ },
2601
+ {
2602
+ "kind": "Reference",
2603
+ "text": "Record",
2604
+ "canonicalReference": "!Record:type"
2297
2605
  },
2298
2606
  {
2299
2607
  "kind": "Content",
2300
- "text": "boolean"
2608
+ "text": "<string, "
2609
+ },
2610
+ {
2611
+ "kind": "Reference",
2612
+ "text": "core.Refkey",
2613
+ "canonicalReference": "@alloy-js/core!Refkey:type"
2301
2614
  },
2302
2615
  {
2303
2616
  "kind": "Content",
2304
- "text": ";"
2305
- }
2306
- ],
2617
+ "text": ">"
2618
+ },
2619
+ {
2620
+ "kind": "Content",
2621
+ "text": ";"
2622
+ }
2623
+ ],
2624
+ "isReadonly": false,
2625
+ "isOptional": true,
2626
+ "releaseTag": "Public",
2627
+ "name": "typeParameters",
2628
+ "propertyTypeTokenRange": {
2629
+ "startIndex": 1,
2630
+ "endIndex": 5
2631
+ }
2632
+ }
2633
+ ],
2634
+ "extendsTokenRanges": [
2635
+ {
2636
+ "startIndex": 1,
2637
+ "endIndex": 5
2638
+ },
2639
+ {
2640
+ "startIndex": 6,
2641
+ "endIndex": 7
2642
+ },
2643
+ {
2644
+ "startIndex": 8,
2645
+ "endIndex": 9
2646
+ }
2647
+ ]
2648
+ },
2649
+ {
2650
+ "kind": "Function",
2651
+ "canonicalReference": "@alloy-js/csharp!InterfaceMethod:function(1)",
2652
+ "docComment": "",
2653
+ "excerptTokens": [
2654
+ {
2655
+ "kind": "Content",
2656
+ "text": "export declare function InterfaceMethod(props: "
2657
+ },
2658
+ {
2659
+ "kind": "Reference",
2660
+ "text": "InterfaceMethodProps",
2661
+ "canonicalReference": "@alloy-js/csharp!InterfaceMethodProps:interface"
2662
+ },
2663
+ {
2664
+ "kind": "Content",
2665
+ "text": "): "
2666
+ },
2667
+ {
2668
+ "kind": "Reference",
2669
+ "text": "Children",
2670
+ "canonicalReference": "@alloy-js/core!Children:type"
2671
+ },
2672
+ {
2673
+ "kind": "Content",
2674
+ "text": ";"
2675
+ }
2676
+ ],
2677
+ "fileUrlPath": "src/components/interface/method.tsx",
2678
+ "returnTypeTokenRange": {
2679
+ "startIndex": 3,
2680
+ "endIndex": 4
2681
+ },
2682
+ "releaseTag": "Public",
2683
+ "overloadIndex": 1,
2684
+ "parameters": [
2685
+ {
2686
+ "parameterName": "props",
2687
+ "parameterTypeTokenRange": {
2688
+ "startIndex": 1,
2689
+ "endIndex": 2
2690
+ },
2691
+ "isOptional": false
2692
+ }
2693
+ ],
2694
+ "name": "InterfaceMethod"
2695
+ },
2696
+ {
2697
+ "kind": "Interface",
2698
+ "canonicalReference": "@alloy-js/csharp!InterfaceMethodModifiers:interface",
2699
+ "docComment": "/**\n * Method modifiers. Can only be one.\n */\n",
2700
+ "excerptTokens": [
2701
+ {
2702
+ "kind": "Content",
2703
+ "text": "export interface InterfaceMethodModifiers "
2704
+ }
2705
+ ],
2706
+ "fileUrlPath": "src/components/interface/method.tsx",
2707
+ "releaseTag": "Public",
2708
+ "name": "InterfaceMethodModifiers",
2709
+ "preserveMemberOrder": false,
2710
+ "members": [
2711
+ {
2712
+ "kind": "PropertySignature",
2713
+ "canonicalReference": "@alloy-js/csharp!InterfaceMethodModifiers#new:member",
2714
+ "docComment": "",
2715
+ "excerptTokens": [
2716
+ {
2717
+ "kind": "Content",
2718
+ "text": "readonly new?: "
2719
+ },
2720
+ {
2721
+ "kind": "Content",
2722
+ "text": "boolean"
2723
+ },
2724
+ {
2725
+ "kind": "Content",
2726
+ "text": ";"
2727
+ }
2728
+ ],
2307
2729
  "isReadonly": true,
2308
2730
  "isOptional": true,
2309
2731
  "releaseTag": "Public",
2310
- "name": "static",
2732
+ "name": "new",
2311
2733
  "propertyTypeTokenRange": {
2312
2734
  "startIndex": 1,
2313
2735
  "endIndex": 2
2314
2736
  }
2737
+ }
2738
+ ],
2739
+ "extendsTokenRanges": []
2740
+ },
2741
+ {
2742
+ "kind": "Interface",
2743
+ "canonicalReference": "@alloy-js/csharp!InterfaceMethodProps:interface",
2744
+ "docComment": "",
2745
+ "excerptTokens": [
2746
+ {
2747
+ "kind": "Content",
2748
+ "text": "export interface InterfaceMethodProps extends "
2749
+ },
2750
+ {
2751
+ "kind": "Reference",
2752
+ "text": "AccessModifiers",
2753
+ "canonicalReference": "@alloy-js/csharp!AccessModifiers:interface"
2754
+ },
2755
+ {
2756
+ "kind": "Content",
2757
+ "text": ", "
2758
+ },
2759
+ {
2760
+ "kind": "Reference",
2761
+ "text": "InterfaceMethodModifiers",
2762
+ "canonicalReference": "@alloy-js/csharp!InterfaceMethodModifiers:interface"
2315
2763
  },
2764
+ {
2765
+ "kind": "Content",
2766
+ "text": " "
2767
+ }
2768
+ ],
2769
+ "fileUrlPath": "src/components/interface/method.tsx",
2770
+ "releaseTag": "Public",
2771
+ "name": "InterfaceMethodProps",
2772
+ "preserveMemberOrder": false,
2773
+ "members": [
2316
2774
  {
2317
2775
  "kind": "PropertySignature",
2318
- "canonicalReference": "@alloy-js/csharp!MethodModifiers#virtual:member",
2776
+ "canonicalReference": "@alloy-js/csharp!InterfaceMethodProps#children:member",
2319
2777
  "docComment": "",
2320
2778
  "excerptTokens": [
2321
2779
  {
2322
2780
  "kind": "Content",
2323
- "text": "readonly virtual?: "
2781
+ "text": "children?: "
2782
+ },
2783
+ {
2784
+ "kind": "Reference",
2785
+ "text": "Children",
2786
+ "canonicalReference": "@alloy-js/core!Children:type"
2787
+ },
2788
+ {
2789
+ "kind": "Content",
2790
+ "text": ";"
2791
+ }
2792
+ ],
2793
+ "isReadonly": false,
2794
+ "isOptional": true,
2795
+ "releaseTag": "Public",
2796
+ "name": "children",
2797
+ "propertyTypeTokenRange": {
2798
+ "startIndex": 1,
2799
+ "endIndex": 2
2800
+ }
2801
+ },
2802
+ {
2803
+ "kind": "PropertySignature",
2804
+ "canonicalReference": "@alloy-js/csharp!InterfaceMethodProps#name:member",
2805
+ "docComment": "",
2806
+ "excerptTokens": [
2807
+ {
2808
+ "kind": "Content",
2809
+ "text": "name: "
2810
+ },
2811
+ {
2812
+ "kind": "Content",
2813
+ "text": "string"
2814
+ },
2815
+ {
2816
+ "kind": "Content",
2817
+ "text": ";"
2818
+ }
2819
+ ],
2820
+ "isReadonly": false,
2821
+ "isOptional": false,
2822
+ "releaseTag": "Public",
2823
+ "name": "name",
2824
+ "propertyTypeTokenRange": {
2825
+ "startIndex": 1,
2826
+ "endIndex": 2
2827
+ }
2828
+ },
2829
+ {
2830
+ "kind": "PropertySignature",
2831
+ "canonicalReference": "@alloy-js/csharp!InterfaceMethodProps#parameters:member",
2832
+ "docComment": "",
2833
+ "excerptTokens": [
2834
+ {
2835
+ "kind": "Content",
2836
+ "text": "parameters?: "
2837
+ },
2838
+ {
2839
+ "kind": "Reference",
2840
+ "text": "Array",
2841
+ "canonicalReference": "!Array:interface"
2842
+ },
2843
+ {
2844
+ "kind": "Content",
2845
+ "text": "<"
2846
+ },
2847
+ {
2848
+ "kind": "Reference",
2849
+ "text": "ParameterProps",
2850
+ "canonicalReference": "@alloy-js/csharp!ParameterProps:interface"
2851
+ },
2852
+ {
2853
+ "kind": "Content",
2854
+ "text": ">"
2855
+ },
2856
+ {
2857
+ "kind": "Content",
2858
+ "text": ";"
2859
+ }
2860
+ ],
2861
+ "isReadonly": false,
2862
+ "isOptional": true,
2863
+ "releaseTag": "Public",
2864
+ "name": "parameters",
2865
+ "propertyTypeTokenRange": {
2866
+ "startIndex": 1,
2867
+ "endIndex": 5
2868
+ }
2869
+ },
2870
+ {
2871
+ "kind": "PropertySignature",
2872
+ "canonicalReference": "@alloy-js/csharp!InterfaceMethodProps#refkey:member",
2873
+ "docComment": "",
2874
+ "excerptTokens": [
2875
+ {
2876
+ "kind": "Content",
2877
+ "text": "refkey?: "
2878
+ },
2879
+ {
2880
+ "kind": "Reference",
2881
+ "text": "Refkey",
2882
+ "canonicalReference": "@alloy-js/core!Refkey:type"
2883
+ },
2884
+ {
2885
+ "kind": "Content",
2886
+ "text": ";"
2887
+ }
2888
+ ],
2889
+ "isReadonly": false,
2890
+ "isOptional": true,
2891
+ "releaseTag": "Public",
2892
+ "name": "refkey",
2893
+ "propertyTypeTokenRange": {
2894
+ "startIndex": 1,
2895
+ "endIndex": 2
2896
+ }
2897
+ },
2898
+ {
2899
+ "kind": "PropertySignature",
2900
+ "canonicalReference": "@alloy-js/csharp!InterfaceMethodProps#returns:member",
2901
+ "docComment": "",
2902
+ "excerptTokens": [
2903
+ {
2904
+ "kind": "Content",
2905
+ "text": "returns?: "
2906
+ },
2907
+ {
2908
+ "kind": "Reference",
2909
+ "text": "Children",
2910
+ "canonicalReference": "@alloy-js/core!Children:type"
2911
+ },
2912
+ {
2913
+ "kind": "Content",
2914
+ "text": ";"
2915
+ }
2916
+ ],
2917
+ "isReadonly": false,
2918
+ "isOptional": true,
2919
+ "releaseTag": "Public",
2920
+ "name": "returns",
2921
+ "propertyTypeTokenRange": {
2922
+ "startIndex": 1,
2923
+ "endIndex": 2
2924
+ }
2925
+ }
2926
+ ],
2927
+ "extendsTokenRanges": [
2928
+ {
2929
+ "startIndex": 1,
2930
+ "endIndex": 2
2931
+ },
2932
+ {
2933
+ "startIndex": 3,
2934
+ "endIndex": 4
2935
+ }
2936
+ ]
2937
+ },
2938
+ {
2939
+ "kind": "Interface",
2940
+ "canonicalReference": "@alloy-js/csharp!InterfaceModifiers:interface",
2941
+ "docComment": "",
2942
+ "excerptTokens": [
2943
+ {
2944
+ "kind": "Content",
2945
+ "text": "export interface InterfaceModifiers "
2946
+ }
2947
+ ],
2948
+ "fileUrlPath": "src/components/interface/declaration.tsx",
2949
+ "releaseTag": "Public",
2950
+ "name": "InterfaceModifiers",
2951
+ "preserveMemberOrder": false,
2952
+ "members": [
2953
+ {
2954
+ "kind": "PropertySignature",
2955
+ "canonicalReference": "@alloy-js/csharp!InterfaceModifiers#partial:member",
2956
+ "docComment": "",
2957
+ "excerptTokens": [
2958
+ {
2959
+ "kind": "Content",
2960
+ "text": "readonly partial?: "
2324
2961
  },
2325
2962
  {
2326
2963
  "kind": "Content",
@@ -2334,7 +2971,7 @@
2334
2971
  "isReadonly": true,
2335
2972
  "isOptional": true,
2336
2973
  "releaseTag": "Public",
2337
- "name": "virtual",
2974
+ "name": "partial",
2338
2975
  "propertyTypeTokenRange": {
2339
2976
  "startIndex": 1,
2340
2977
  "endIndex": 2
@@ -2343,6 +2980,69 @@
2343
2980
  ],
2344
2981
  "extendsTokenRanges": []
2345
2982
  },
2983
+ {
2984
+ "kind": "Function",
2985
+ "canonicalReference": "@alloy-js/csharp!makeModifiers:function(1)",
2986
+ "docComment": "",
2987
+ "excerptTokens": [
2988
+ {
2989
+ "kind": "Content",
2990
+ "text": "export declare function makeModifiers<T>(obj: "
2991
+ },
2992
+ {
2993
+ "kind": "Reference",
2994
+ "text": "Array",
2995
+ "canonicalReference": "!Array:interface"
2996
+ },
2997
+ {
2998
+ "kind": "Content",
2999
+ "text": "<keyof T>"
3000
+ },
3001
+ {
3002
+ "kind": "Content",
3003
+ "text": "): "
3004
+ },
3005
+ {
3006
+ "kind": "Content",
3007
+ "text": "(data: T) => string"
3008
+ },
3009
+ {
3010
+ "kind": "Content",
3011
+ "text": ";"
3012
+ }
3013
+ ],
3014
+ "fileUrlPath": "src/modifiers.ts",
3015
+ "returnTypeTokenRange": {
3016
+ "startIndex": 4,
3017
+ "endIndex": 5
3018
+ },
3019
+ "releaseTag": "Public",
3020
+ "overloadIndex": 1,
3021
+ "parameters": [
3022
+ {
3023
+ "parameterName": "obj",
3024
+ "parameterTypeTokenRange": {
3025
+ "startIndex": 1,
3026
+ "endIndex": 3
3027
+ },
3028
+ "isOptional": false
3029
+ }
3030
+ ],
3031
+ "typeParameters": [
3032
+ {
3033
+ "typeParameterName": "T",
3034
+ "constraintTokenRange": {
3035
+ "startIndex": 0,
3036
+ "endIndex": 0
3037
+ },
3038
+ "defaultTypeTokenRange": {
3039
+ "startIndex": 0,
3040
+ "endIndex": 0
3041
+ }
3042
+ }
3043
+ ],
3044
+ "name": "makeModifiers"
3045
+ },
2346
3046
  {
2347
3047
  "kind": "Function",
2348
3048
  "canonicalReference": "@alloy-js/csharp!Name:function(1)",