Skip to content

Commit

Permalink
Merge branch 'master' of github.com:laravel/echo
Browse files Browse the repository at this point in the history
  • Loading branch information
taylorotwell committed Aug 3, 2021
2 parents 3c0788b + 5d31340 commit b7631b0
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
# Release Notes

## [Unreleased](https://github.com/laravel/echo/compare/v1.10.0...master)
## [Unreleased](https://github.com/laravel/echo/compare/v1.11.0...master)


## [v1.11.0 (2021-06-17)](https://github.com/laravel/echo/compare/v1.10.0...v1.11.0)

### Added
- Add `listenToAll` and `stopListeningToAll` ([#315](https://github.com/laravel/echo/pull/315))


## [v1.10.0 (2020-12-19)](https://github.com/laravel/echo/compare/v1.9.0...v1.10.0)
Expand Down
4 changes: 3 additions & 1 deletion src/channel/presence-channel.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
import { Channel } from './channel';

/**
* This interface represents a presence channel.
*/
export interface PresenceChannel {
export interface PresenceChannel extends Channel {
/**
* Register a callback to be called anytime the member list changes.
*/
Expand Down

0 comments on commit b7631b0

Please sign in to comment.