type-fest 0.4.0 → 0.4.1

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": "0.4.0",
3
+ "version": "0.4.1",
4
4
  "description": "A collection of essential TypeScript types",
5
5
  "license": "(MIT OR CC0-1.0)",
6
6
  "repository": "sindresorhus/type-fest",
@@ -1,3 +1,5 @@
1
+ import {Primitive} from './basic';
2
+
1
3
  /**
2
4
  Allows creating a union type by combining primitive types and literal types without sacrificing auto-completion in IDEs for the literal type part of the union.
3
5
 
package/source/merge.d.ts CHANGED
@@ -1,3 +1,5 @@
1
+ import {Omit} from './omit';
2
+
1
3
  /**
2
4
  Merge two types into a new type. Keys of the second type overrides keys of the first type.
3
5