mutate-cow 7.0.0 → 7.0.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": "mutate-cow",
3
- "version": "7.0.0",
3
+ "version": "7.0.1",
4
4
  "description": "Update immutable objects as if they were mutable with copy-on-write",
5
5
  "keywords": [
6
6
  "immutable",
package/src/index.js.flow CHANGED
@@ -68,7 +68,7 @@ export type GetCowContextRoot<+C> =
68
68
  ? (P extends null ? C : GetCowContextRoot<P>)
69
69
  : empty;
70
70
 
71
- declare class CowContext<
71
+ declare export class CowContext<
72
72
  +T,
73
73
  +ParentContext: CowAnyContext | null = CowAnyContext | null,
74
74
  >{