Skip to content

Commit 138a782

Browse files
author
Matt Mazzola
committed
Make handleEvent private method
1 parent 18c8779 commit 138a782

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/service.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -250,7 +250,7 @@ export class Service {
250250
/**
251251
* Given an event object, find embed with matching type and id and invoke its handleEvent method with event.
252252
*/
253-
handleEvent(event: IEvent<any>): void {
253+
private handleEvent(event: IEvent<any>): void {
254254
const embed = utils.find(embed => {
255255
return (embed.config.type === event.type
256256
&& embed.config.uniqueId === event.id);

0 commit comments

Comments
 (0)