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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "type-fest",
3
- "version": "3.5.6",
3
+ "version": "3.5.7",
4
4
  "description": "A collection of essential TypeScript types",
5
5
  "license": "(MIT OR CC0-1.0)",
6
6
  "repository": "sindresorhus/type-fest",
@@ -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?: string;
194
+ name: string;
196
195
  };
197
196
 
198
197
  export type ImportsNotUsedAsValues =