type-fest 4.3.0 → 4.3.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": "4.3.0",
3
+ "version": "4.3.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,6 +1,6 @@
1
1
  declare const tag: unique symbol;
2
2
 
3
- declare type TagContainer<Token> = {
3
+ export type TagContainer<Token> = {
4
4
  readonly [tag]: Token;
5
5
  };
6
6