File tree 1 file changed +59
-11
lines changed
1 file changed +59
-11
lines changed Original file line number Diff line number Diff line change @@ -2724,13 +2724,11 @@ declare class Server {
2724
2724
cli : {
2725
2725
negatedDescription : string;
2726
2726
} ;
2727
- description ?: undefined ;
2728
- link ?: undefined ;
2727
+ $ref ?: undefined ;
2729
2728
}
2730
2729
| {
2731
- type : string;
2732
- description : string;
2733
- link : string;
2730
+ $ref : string;
2731
+ type ?: undefined ;
2734
2732
cli ?: undefined /** @typedef {import("express").Request } Request */ ;
2735
2733
}
2736
2734
) [ ] ;
@@ -2782,16 +2780,13 @@ declare class Server {
2782
2780
| {
2783
2781
type : string;
2784
2782
minLength : number;
2785
- /** @type { ServerConfiguration } */ items ?: undefined ;
2783
+ items ?: undefined ;
2786
2784
}
2787
2785
) [ ] ;
2788
2786
description : string;
2789
2787
} ;
2790
2788
options : {
2791
- type : string;
2792
- description : string;
2793
- link : string;
2794
- additionalProperties : boolean;
2789
+ $ref : string;
2795
2790
} ;
2796
2791
} ;
2797
2792
additionalProperties : boolean;
@@ -2800,11 +2795,64 @@ declare class Server {
2800
2795
type : string;
2801
2796
minLength : number;
2802
2797
} ;
2798
+ WatchOptionsChokidar : {
2799
+ type : string;
2800
+ additionalProperties : boolean;
2801
+ description : string;
2802
+ link : string;
2803
+ properties : {
2804
+ persistent : {
2805
+ type : string;
2806
+ } ;
2807
+ ignored : {
2808
+ type : string;
2809
+ } ;
2810
+ ignoreInitial : {
2811
+ type : string;
2812
+ } ;
2813
+ followSymlinks : {
2814
+ type : string /** @type {ServerOptions } */ ;
2815
+ } ;
2816
+ cwd : {
2817
+ type : string;
2818
+ } ;
2819
+ disableGlobbing : {
2820
+ type : string;
2821
+ } ;
2822
+ usePolling : {
2823
+ type : string;
2824
+ } ;
2825
+ interval : {
2826
+ type : string;
2827
+ } ;
2828
+ binaryInterval : {
2829
+ type : string;
2830
+ } ;
2831
+ alwaysStat : {
2832
+ type : string;
2833
+ } ;
2834
+ depth : {
2835
+ type : string /** @type {ServerOptions } */ ;
2836
+ } ;
2837
+ awaitWriteFinish : {
2838
+ type : string;
2839
+ additionalProperties : boolean;
2840
+ } ;
2841
+ ignorePermissionErrors : {
2842
+ type : string;
2843
+ } ;
2844
+ atomic : {
2845
+ anyOf : {
2846
+ type : string;
2847
+ } [ ] ;
2848
+ } ;
2849
+ } ;
2850
+ } ;
2803
2851
WebSocketServer : {
2804
2852
anyOf : {
2805
2853
$ref : string;
2806
2854
} [ ] ;
2807
- /** @type { ServerOptions } */ description : string;
2855
+ description : string;
2808
2856
link : string;
2809
2857
} ;
2810
2858
WebSocketServerType : {
You can’t perform that action at this time.
0 commit comments