| 81 | /// Internal Subscription instance |
| 82 | /// @deprecated. |
| 83 | class Subscription { |
| 84 | constructor(event, subscription, callback) { |
| 85 | this.event = event; |
| 86 | this.subscription = subscription; |
| 87 | this.callback = callback; |
| 88 | } |
| 89 | } |
| 90 | |
| 91 | // Plugin event listener subscriptions |
| 92 | // @deprecated. |
nothing calls this directly
no outgoing calls
no test coverage detected