type-fest 3.5.6 → 3.5.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -188,11 +188,10 @@ declare namespace TsConfigJson {
|
|
|
188
188
|
| 'webworker.iterable';
|
|
189
189
|
|
|
190
190
|
export type Plugin = {
|
|
191
|
-
[key: string]: unknown;
|
|
192
191
|
/**
|
|
193
192
|
Plugin name.
|
|
194
193
|
*/
|
|
195
|
-
name
|
|
194
|
+
name: string;
|
|
196
195
|
};
|
|
197
196
|
|
|
198
197
|
export type ImportsNotUsedAsValues =
|