@@ -978,9 +978,6 @@ declare class Server {
978
978
description : string ;
979
979
multiple : boolean ;
980
980
path : string ;
981
- /**
982
- * @type {string | undefined }
983
- */
984
981
type : string ;
985
982
} [ ] ;
986
983
description : string ;
@@ -1014,7 +1011,7 @@ declare class Server {
1014
1011
type : string ;
1015
1012
multiple : boolean ;
1016
1013
description : string ;
1017
- path : string /** @type { ClientConfiguration } */ ;
1014
+ path : string ;
1018
1015
} [ ] ;
1019
1016
description : string ;
1020
1017
simpleType : string ;
@@ -1035,7 +1032,7 @@ declare class Server {
1035
1032
configs : {
1036
1033
description : string ;
1037
1034
multiple : boolean ;
1038
- path : string ;
1035
+ /** @type { string } */ path : string ;
1039
1036
type : string ;
1040
1037
} [ ] ;
1041
1038
description : string ;
@@ -1056,7 +1053,7 @@ declare class Server {
1056
1053
"https-key" : {
1057
1054
configs : {
1058
1055
type : string ;
1059
- /** @type { number | string } */ multiple : boolean ;
1056
+ multiple : boolean ;
1060
1057
description : string ;
1061
1058
path : string ;
1062
1059
} [ ] ;
@@ -1145,9 +1142,8 @@ declare class Server {
1145
1142
type : string ;
1146
1143
multiple : boolean ;
1147
1144
description : string ;
1148
- path : string ;
1145
+ path : string /** @type { Object<string,string> } */ ;
1149
1146
} [ ] ;
1150
- /** @type {Object<string,string> } */
1151
1147
description : string ;
1152
1148
negatedDescription : string ;
1153
1149
simpleType : string ;
@@ -1156,19 +1152,24 @@ declare class Server {
1156
1152
"magic-html" : {
1157
1153
configs : {
1158
1154
type : string ;
1155
+ /** @type {any } */
1159
1156
multiple : boolean ;
1160
1157
description : string ;
1161
1158
path : string ;
1162
1159
} [ ] ;
1163
1160
description : string ;
1164
1161
negatedDescription : string ;
1165
1162
simpleType : string ;
1166
- multiple : boolean /** @type {string } */ ;
1163
+ /** @type {string } */ multiple : boolean ;
1167
1164
} ;
1168
1165
open : {
1169
1166
configs : {
1170
1167
type : string ;
1171
1168
multiple : boolean ;
1169
+ /**
1170
+ * @private
1171
+ * @returns {Compiler["options"] }
1172
+ */
1172
1173
description : string ;
1173
1174
path : string ;
1174
1175
} [ ] ;
@@ -1196,7 +1197,7 @@ declare class Server {
1196
1197
path : string ;
1197
1198
} [ ] ;
1198
1199
description : string ;
1199
- simpleType : string ;
1200
+ /** @type { Compiler } */ simpleType : string ;
1200
1201
multiple : boolean ;
1201
1202
} ;
1202
1203
"open-app-name-reset" : {
@@ -1431,12 +1432,11 @@ declare class Server {
1431
1432
simpleType : string ;
1432
1433
} ;
1433
1434
static : {
1434
- /** @type {ServerOptions } */
1435
1435
configs : {
1436
1436
type : string ;
1437
1437
multiple : boolean ;
1438
1438
description : string ;
1439
- path : string ;
1439
+ /** @type { ServerOptions } */ path : string ;
1440
1440
} [ ] ;
1441
1441
description : string ;
1442
1442
simpleType : string ;
@@ -2681,6 +2681,7 @@ declare class Server {
2681
2681
OpenBoolean : {
2682
2682
type : string;
2683
2683
} ;
2684
+ /** @type {number | string } */
2684
2685
OpenObject : {
2685
2686
type : string;
2686
2687
additionalProperties : boolean;
@@ -2725,6 +2726,7 @@ declare class Server {
2725
2726
}
2726
2727
) [ ] ;
2727
2728
} ;
2729
+ /** @type {string } */
2728
2730
arguments : {
2729
2731
items : {
2730
2732
type : string;
@@ -2876,7 +2878,7 @@ declare class Server {
2876
2878
instanceof ?: undefined ;
2877
2879
}
2878
2880
| {
2879
- /** @type { string } */ instanceof : string;
2881
+ instanceof : string;
2880
2882
type ?: undefined ;
2881
2883
items ?: undefined ;
2882
2884
}
@@ -2917,6 +2919,7 @@ declare class Server {
2917
2919
cert : {
2918
2920
anyOf : (
2919
2921
| {
2922
+ /** @type {MultiCompiler } */
2920
2923
type : string;
2921
2924
items : {
2922
2925
anyOf : (
@@ -3315,7 +3318,7 @@ declare class Server {
3315
3318
$ref : string;
3316
3319
} ;
3317
3320
onBeforeSetupMiddleware : {
3318
- $ref : string /** @type { ServerOptions } */ ;
3321
+ $ref : string;
3319
3322
} ;
3320
3323
onListening : {
3321
3324
$ref : string;
@@ -3327,7 +3330,7 @@ declare class Server {
3327
3330
$ref : string;
3328
3331
} ;
3329
3332
proxy : {
3330
- $ref : string /** @type { ServerOptions } */ ;
3333
+ $ref : string;
3331
3334
} ;
3332
3335
server : {
3333
3336
$ref : string;
@@ -3345,8 +3348,8 @@ declare class Server {
3345
3348
$ref : string;
3346
3349
} ;
3347
3350
webSocketServer : {
3348
- $ref : string /** @type { ServerOptions } */ ;
3349
- } /** @type { ServerOptions } */ ;
3351
+ $ref : string;
3352
+ } ;
3350
3353
} ;
3351
3354
} ;
3352
3355
/**
0 commit comments