@@ -2217,17 +2217,11 @@ declare class Server {
2217
2217
description: string;
2218
2218
link: string;
2219
2219
};
2220
- OptionsMethod: {
2221
- type: string;
2222
- description: string;
2223
- cli: {
2224
- exclude: boolean;
2225
- };
2226
- };
2227
2220
HistoryApiFallback: {
2228
2221
anyOf: (
2229
2222
| {
2230
2223
type: string;
2224
+ /** @type {ClientConfiguration} */
2231
2225
cli: {
2232
2226
negatedDescription: string;
2233
2227
};
@@ -2236,7 +2230,6 @@ declare class Server {
2236
2230
}
2237
2231
| {
2238
2232
type: string;
2239
- /** @type {string} */
2240
2233
description: string;
2241
2234
link: string;
2242
2235
cli?: undefined /** @typedef {import("express").Request} Request */;
@@ -2301,7 +2294,7 @@ declare class Server {
2301
2294
cli: {
2302
2295
negatedDescription: string;
2303
2296
};
2304
- /** @type {number | string} */ link: string;
2297
+ link: string;
2305
2298
};
2306
2299
MagicHTML: {
2307
2300
type: string;
@@ -2456,7 +2449,6 @@ declare class Server {
2456
2449
Proxy: {
2457
2450
anyOf: (
2458
2451
| {
2459
- /** @type {any} */
2460
2452
type: string;
2461
2453
items?: undefined;
2462
2454
}
@@ -2476,7 +2468,7 @@ declare class Server {
2476
2468
};
2477
2469
}
2478
2470
)[];
2479
- description: string;
2471
+ /** @type {any} */ description: string;
2480
2472
link: string;
2481
2473
};
2482
2474
Server: {
@@ -2486,7 +2478,6 @@ declare class Server {
2486
2478
link: string;
2487
2479
description: string;
2488
2480
};
2489
- /** @type {MultiCompiler} */
2490
2481
ServerType: {
2491
2482
enum: string[];
2492
2483
};
@@ -2637,10 +2628,6 @@ declare class Server {
2637
2628
}
2638
2629
| {
2639
2630
instanceof: string;
2640
- /**
2641
- * @param {string | Static | undefined} [optionsForStatic]
2642
- * @returns {NormalizedStatic}
2643
- */
2644
2631
type?: undefined;
2645
2632
}
2646
2633
)[];
@@ -2930,7 +2917,7 @@ declare class Server {
2930
2917
| {
2931
2918
enum: boolean[];
2932
2919
cli: {
2933
- negatedDescription: string /** @type {Array<keyof ServerOptions>} */ ;
2920
+ negatedDescription: string;
2934
2921
};
2935
2922
$ref?: undefined;
2936
2923
}
@@ -2962,20 +2949,13 @@ declare class Server {
2962
2949
exclude: boolean;
2963
2950
};
2964
2951
};
2965
- /**
2966
- * @param {string | Buffer | undefined} item
2967
- * @returns {string | Buffer | undefined}
2968
- */
2969
2952
};
2970
- /**
2971
- * @param {string | Buffer | undefined} item
2972
- * @returns {string | Buffer | undefined}
2973
- */
2974
2953
additionalProperties: boolean;
2975
2954
};
2955
+ /** @type {any} */
2976
2956
WebSocketServerString: {
2977
2957
type: string;
2978
- minLength: number;
2958
+ /** @type {ServerOptions} */ minLength: number;
2979
2959
};
2980
2960
};
2981
2961
additionalProperties: boolean;
@@ -2998,9 +2978,6 @@ declare class Server {
2998
2978
headers: {
2999
2979
$ref: string;
3000
2980
};
3001
- optionsMethod: {
3002
- $ref: string;
3003
- };
3004
2981
historyApiFallback: {
3005
2982
$ref: string;
3006
2983
};
@@ -3023,7 +3000,7 @@ declare class Server {
3023
3000
$ref: string;
3024
3001
};
3025
3002
magicHtml: {
3026
- $ref: string;
3003
+ $ref: string /** @type {ServerOptions} */ ;
3027
3004
};
3028
3005
onAfterSetupMiddleware: {
3029
3006
$ref: string;
0 commit comments