Skip to content

Commit

Permalink
Update types.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
abhishiv committed Jun 24, 2024
1 parent d323a3a commit 07ee3fa
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/dom/types.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import { Observable, Change, ChangeType } from "@gullerya/object-observer";
import { Signal, Wire, StoreCursor, WireFunction } from "../core/state";

import * as DOMConstants from "./constants";
Expand Down Expand Up @@ -145,7 +144,7 @@ export class EEmitter {
}
emit(eventName: string, detail: any) {
return this.t.dispatchEvent(
new CustomEvent(eventName, { detail, cancelable: true }),
new CustomEvent(eventName, { detail, cancelable: true })
);
}
}

0 comments on commit 07ee3fa

Please sign in to comment.