@@ -978,6 +978,9 @@ declare class Server {
978
978
description : string ;
979
979
multiple : boolean ;
980
980
path : string ;
981
+ /**
982
+ * @type {string | undefined }
983
+ */
981
984
type : string ;
982
985
} [ ] ;
983
986
description : string ;
@@ -1011,7 +1014,7 @@ declare class Server {
1011
1014
type : string ;
1012
1015
multiple : boolean ;
1013
1016
description : string ;
1014
- path : string ;
1017
+ path : string /** @type { ClientConfiguration } */ ;
1015
1018
} [ ] ;
1016
1019
description : string ;
1017
1020
simpleType : string ;
@@ -1032,7 +1035,7 @@ declare class Server {
1032
1035
configs : {
1033
1036
description : string ;
1034
1037
multiple : boolean ;
1035
- /** @type { string } */ path : string ;
1038
+ path : string ;
1036
1039
type : string ;
1037
1040
} [ ] ;
1038
1041
description : string ;
@@ -1053,7 +1056,7 @@ declare class Server {
1053
1056
"https-key" : {
1054
1057
configs : {
1055
1058
type : string ;
1056
- multiple : boolean ;
1059
+ /** @type { number | string } */ multiple : boolean ;
1057
1060
description : string ;
1058
1061
path : string ;
1059
1062
} [ ] ;
@@ -1142,8 +1145,9 @@ declare class Server {
1142
1145
type : string ;
1143
1146
multiple : boolean ;
1144
1147
description : string ;
1145
- path : string /** @type { Object<string,string> } */ ;
1148
+ path : string ;
1146
1149
} [ ] ;
1150
+ /** @type {Object<string,string> } */
1147
1151
description : string ;
1148
1152
negatedDescription : string ;
1149
1153
simpleType : string ;
@@ -1152,24 +1156,19 @@ declare class Server {
1152
1156
"magic-html" : {
1153
1157
configs : {
1154
1158
type : string ;
1155
- /** @type {any } */
1156
1159
multiple : boolean ;
1157
1160
description : string ;
1158
1161
path : string ;
1159
1162
} [ ] ;
1160
1163
description : string ;
1161
1164
negatedDescription : string ;
1162
1165
simpleType : string ;
1163
- /** @type {string } */ multiple : boolean ;
1166
+ multiple : boolean /** @type {string } */ ;
1164
1167
} ;
1165
1168
open : {
1166
1169
configs : {
1167
1170
type : string ;
1168
1171
multiple : boolean ;
1169
- /**
1170
- * @private
1171
- * @returns {Compiler["options"] }
1172
- */
1173
1172
description : string ;
1174
1173
path : string ;
1175
1174
} [ ] ;
@@ -1197,7 +1196,7 @@ declare class Server {
1197
1196
path : string ;
1198
1197
} [ ] ;
1199
1198
description : string ;
1200
- /** @type { Compiler } */ simpleType : string ;
1199
+ simpleType : string ;
1201
1200
multiple : boolean ;
1202
1201
} ;
1203
1202
"open-app-name-reset" : {
@@ -1256,7 +1255,7 @@ declare class Server {
1256
1255
| {
1257
1256
type : string ;
1258
1257
values : string [ ] ;
1259
- /** @type { NormalizedStatic } */ multiple : boolean ;
1258
+ multiple : boolean ;
1260
1259
description : string ;
1261
1260
path : string ;
1262
1261
}
@@ -1432,6 +1431,7 @@ declare class Server {
1432
1431
simpleType : string ;
1433
1432
} ;
1434
1433
static : {
1434
+ /** @type {ServerOptions } */
1435
1435
configs : {
1436
1436
type : string ;
1437
1437
multiple : boolean ;
@@ -1458,7 +1458,6 @@ declare class Server {
1458
1458
type : string ;
1459
1459
multiple : boolean ;
1460
1460
description : string ;
1461
- /** @type {ServerOptions } */
1462
1461
path : string ;
1463
1462
} [ ] ;
1464
1463
description : string ;
@@ -1480,7 +1479,7 @@ declare class Server {
1480
1479
configs : {
1481
1480
type : string ;
1482
1481
multiple : boolean ;
1483
- /** @type { ServerOptions } */ description : string ;
1482
+ description : string ;
1484
1483
path : string ;
1485
1484
} [ ] ;
1486
1485
description : string ;
@@ -2682,7 +2681,6 @@ declare class Server {
2682
2681
OpenBoolean : {
2683
2682
type : string;
2684
2683
} ;
2685
- /** @type {number | string } */
2686
2684
OpenObject : {
2687
2685
type : string;
2688
2686
additionalProperties : boolean;
@@ -2727,7 +2725,6 @@ declare class Server {
2727
2725
}
2728
2726
) [ ] ;
2729
2727
} ;
2730
- /** @type {string } */
2731
2728
arguments : {
2732
2729
items : {
2733
2730
type : string;
@@ -2879,7 +2876,7 @@ declare class Server {
2879
2876
instanceof ?: undefined ;
2880
2877
}
2881
2878
| {
2882
- instanceof : string;
2879
+ /** @type { string } */ instanceof : string;
2883
2880
type ?: undefined ;
2884
2881
items ?: undefined ;
2885
2882
}
@@ -2920,7 +2917,6 @@ declare class Server {
2920
2917
cert : {
2921
2918
anyOf : (
2922
2919
| {
2923
- /** @type {MultiCompiler } */
2924
2920
type : string;
2925
2921
items : {
2926
2922
anyOf : (
@@ -3069,7 +3065,7 @@ declare class Server {
3069
3065
SetupMiddlewares : {
3070
3066
instanceof : string;
3071
3067
description : string;
3072
- link : string /** @type { NormalizedStatic } */ ;
3068
+ link : string;
3073
3069
} ;
3074
3070
Static : {
3075
3071
anyOf : (
@@ -3313,13 +3309,13 @@ declare class Server {
3313
3309
$ref : string;
3314
3310
} ;
3315
3311
magicHtml : {
3316
- $ref : string /** @type { ServerOptions } */ ;
3312
+ $ref : string;
3317
3313
} ;
3318
3314
onAfterSetupMiddleware : {
3319
- $ref : string /** @type { ServerOptions } */ ;
3315
+ $ref : string;
3320
3316
} ;
3321
3317
onBeforeSetupMiddleware : {
3322
- $ref : string;
3318
+ $ref : string /** @type { ServerOptions } */ ;
3323
3319
} ;
3324
3320
onListening : {
3325
3321
$ref : string;
@@ -3331,15 +3327,14 @@ declare class Server {
3331
3327
$ref : string;
3332
3328
} ;
3333
3329
proxy : {
3334
- $ref : string;
3330
+ $ref : string /** @type { ServerOptions } */ ;
3335
3331
} ;
3336
3332
server : {
3337
3333
$ref : string;
3338
3334
} ;
3339
3335
setupExitSignals : {
3340
3336
$ref : string;
3341
3337
} ;
3342
- /** @type {Array<keyof ServerOptions> } */
3343
3338
setupMiddlewares : {
3344
3339
$ref : string;
3345
3340
} ;
@@ -3350,8 +3345,8 @@ declare class Server {
3350
3345
$ref : string;
3351
3346
} ;
3352
3347
webSocketServer : {
3353
- $ref : string;
3354
- } ;
3348
+ $ref : string /** @type { ServerOptions } */ ;
3349
+ } /** @type { ServerOptions } */ ;
3355
3350
} ;
3356
3351
} ;
3357
3352
/**
0 commit comments