type-fest 0.21.2 → 0.21.3
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 +1 -1
- package/source/basic.d.ts +1 -1
- package/source/entry.d.ts +1 -1
package/package.json
CHANGED
package/source/basic.d.ts
CHANGED
package/source/entry.d.ts
CHANGED
|
@@ -44,7 +44,7 @@ const arrayEntryNumber: Entry<typeof arrayExample> = [1, 1];
|
|
|
44
44
|
|
|
45
45
|
// Maps
|
|
46
46
|
const mapExample = new Map([['a', 1]]);
|
|
47
|
-
const mapEntry: Entry<typeof
|
|
47
|
+
const mapEntry: Entry<typeof mapExample> = ['a', 1];
|
|
48
48
|
|
|
49
49
|
// Sets
|
|
50
50
|
const setExample = new Set(['a', 1]);
|