@@ -802,10 +802,15 @@ declare class Server {
802
802
type : string ;
803
803
multiple : boolean ;
804
804
description : string ;
805
+ negatedDescription : string ;
805
806
path : string ;
806
807
} [ ] ;
807
808
description : string ;
808
809
simpleType : string ;
810
+ /**
811
+ * @param {string } gateway
812
+ * @returns {string | undefined }
813
+ */
809
814
multiple : boolean ;
810
815
} ;
811
816
host : {
@@ -824,7 +829,7 @@ declare class Server {
824
829
type : string ;
825
830
}
826
831
) [ ] ;
827
- /** @type { NetworkInterfaceInfo[] } */ description : string ;
832
+ description : string ;
828
833
simpleType : string ;
829
834
multiple : boolean ;
830
835
} ;
@@ -886,9 +891,6 @@ declare class Server {
886
891
multiple : boolean ;
887
892
} ;
888
893
"https-ca-reset" : {
889
- /**
890
- * @type {string | undefined }
891
- */
892
894
configs : {
893
895
description : string ;
894
896
multiple : boolean ;
@@ -1045,7 +1047,7 @@ declare class Server {
1045
1047
values : boolean [ ] ;
1046
1048
multiple : boolean ;
1047
1049
description : string ;
1048
- path : string ;
1050
+ path : string /** @type { Object<string,string> } */ ;
1049
1051
}
1050
1052
) [ ] ;
1051
1053
description : string ;
@@ -1069,13 +1071,14 @@ declare class Server {
1069
1071
type : string ;
1070
1072
multiple : boolean ;
1071
1073
description : string ;
1072
- negatedDescription : string ;
1074
+ /** @type { string } */ negatedDescription : string ;
1073
1075
path : string ;
1074
1076
} [ ] ;
1075
1077
description : string ;
1076
1078
simpleType : string ;
1077
1079
multiple : boolean ;
1078
1080
} ;
1081
+ /** @type {MultiCompiler } */
1079
1082
open : {
1080
1083
configs : (
1081
1084
| {
@@ -1344,9 +1347,9 @@ declare class Server {
1344
1347
type : string ;
1345
1348
values : string [ ] ;
1346
1349
} [ ] ;
1347
- description : string ;
1350
+ /** @type { ServerOptions } */ description : string ;
1348
1351
multiple : boolean ;
1349
- simpleType : string ;
1352
+ simpleType : string /** @type { ServerOptions } */ ;
1350
1353
} ;
1351
1354
static : {
1352
1355
configs : {
@@ -1364,7 +1367,7 @@ declare class Server {
1364
1367
type : string ;
1365
1368
multiple : boolean ;
1366
1369
description : string ;
1367
- path : string ;
1370
+ path : string /** @type { any } */ ;
1368
1371
} [ ] ;
1369
1372
description : string ;
1370
1373
simpleType : string ;
@@ -1474,8 +1477,9 @@ declare class Server {
1474
1477
) [ ] ;
1475
1478
description : string ;
1476
1479
simpleType : string ;
1477
- multiple : boolean ;
1480
+ multiple : boolean /** @type { ServerOptions & { cacert?: ServerOptions["ca"] } } */ ;
1478
1481
} ;
1482
+ /** @type {ServerOptions & { cacert?: ServerOptions["ca"] } } */
1479
1483
"web-socket-server-type" : {
1480
1484
configs : (
1481
1485
| {
0 commit comments