fix: remove extra "implements" clause in `MaxPopupMenu` (#310)

This clause has been introduced in 61648e4 and seems not needed.
development
Thomas Bouffard 2024-01-20 13:52:43 +01:00 committed by GitHub
parent 5ddc8f5af2
commit a0ea2b99fc
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -51,7 +51,7 @@ import { PopupMenuItem } from '../types';
*
* Fires after the menu has been shown in <popup>.
*/
class MaxPopupMenu extends EventSource implements Partial<PopupMenuItem> {
class MaxPopupMenu extends EventSource {
constructor(
factoryMethod?: (handler: PopupMenuItem, cell: Cell | null, me: MouseEvent) => void
) {