emittery 0.7.1 → 0.7.2

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.
Files changed (2) hide show
  1. package/index.d.ts +1 -1
  2. package/package.json +1 -1
package/index.d.ts CHANGED
@@ -26,7 +26,7 @@ declare class Emittery {
26
26
  instance.emit('event');
27
27
  ```
28
28
  */
29
- static mixin(emitteryPropertyName: string, methodNames?: readonly string[]): Function;
29
+ static mixin(emitteryPropertyName: string | symbol, methodNames?: readonly string[]): Function;
30
30
 
31
31
  /**
32
32
  Fires when an event listener was added.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "emittery",
3
- "version": "0.7.1",
3
+ "version": "0.7.2",
4
4
  "description": "Simple and modern async event emitter",
5
5
  "license": "MIT",
6
6
  "repository": "sindresorhus/emittery",