diff --git a/lib/index.ts b/lib/index.ts index 7c2272b1..e14afd82 100644 --- a/lib/index.ts +++ b/lib/index.ts @@ -2,6 +2,10 @@ import { EventBus } from "./EventBus" import { ProxyBus } from "./ProxyBus" import { SimpleBus } from "./SimpleBus" +export type { EventBus } from './EventBus' +export type { EventHandler } from "./EventHandler"; +export type { Event } from "./Event"; + export { ProxyBus } from "./ProxyBus" export { SimpleBus } from "./SimpleBus";