mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 15:31:16 +08:00
FIX a critical api missing
This commit is contained in:
parent
8e44132e99
commit
8a53bb3969
@ -126,6 +126,10 @@ export class Channel {
|
||||
this.addListener(eventName, listener);
|
||||
}
|
||||
|
||||
off(eventName: string, listener: Listener) {
|
||||
this.removeListener(eventName, listener);
|
||||
}
|
||||
|
||||
private handleEvent(event: ChannelEvent, isPeer = false) {
|
||||
const listeners = this.listeners(event.type);
|
||||
if (listeners && (isPeer || event.from !== this.sender)) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user