File tree 2 files changed +3
-3
lines changed
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -100,7 +100,7 @@ const noop = () => {};
100
100
* @property {{[key: string]: string} } [mimeTypes]
101
101
* @property {string | undefined } [mimeTypeDefault]
102
102
* @property {boolean | ((targetPath: string) => boolean) } [writeToDisk]
103
- * @property {string } [methods]
103
+ * @property {string[] } [methods]
104
104
* @property {Headers<RequestInternal, ResponseInternal> } [headers]
105
105
* @property {NonNullable<Configuration["output"]>["publicPath"] } [publicPath]
106
106
* @property {Configuration["stats"] } [stats]
Original file line number Diff line number Diff line change @@ -76,7 +76,7 @@ export = wdm;
76
76
* @property {{[key: string]: string} } [mimeTypes]
77
77
* @property {string | undefined } [mimeTypeDefault]
78
78
* @property {boolean | ((targetPath: string) => boolean) } [writeToDisk]
79
- * @property {string } [methods]
79
+ * @property {string[] } [methods]
80
80
* @property {Headers<RequestInternal, ResponseInternal> } [headers]
81
81
* @property {NonNullable<Configuration["output"]>["publicPath"] } [publicPath]
82
82
* @property {Configuration["stats"] } [stats]
@@ -187,7 +187,7 @@ type Options<
187
187
| undefined ;
188
188
mimeTypeDefault ?: string | undefined ;
189
189
writeToDisk ?: boolean | ( ( targetPath : string ) => boolean ) | undefined ;
190
- methods ?: string | undefined ;
190
+ methods ?: string [ ] | undefined ;
191
191
headers ?: Headers < RequestInternal , ResponseInternal > ;
192
192
publicPath ?: NonNullable < Configuration [ "output" ] > [ "publicPath" ] ;
193
193
stats ?: Configuration [ "stats" ] ;
You can’t perform that action at this time.
0 commit comments