Skip to content

Commit

Permalink
Export typed event emitter key types (#3597)
Browse files Browse the repository at this point in the history
* Export typed event emitter key types

* Update src/matrix.ts
  • Loading branch information
t3chguy authored Jul 13, 2023
1 parent 13fec49 commit f005984
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion src/matrix.ts
Original file line number Diff line number Diff line change
Expand Up @@ -63,9 +63,22 @@ export * as SecretStorage from "./secret-storage";
export type { ICryptoCallbacks } from "./crypto"; // used to be located here
export { createNewMatrixCall } from "./webrtc/call";
export type { MatrixCall } from "./webrtc/call";
export { GroupCallEvent, GroupCallIntent, GroupCallState, GroupCallType } from "./webrtc/groupCall";
export {
GroupCallEvent,
GroupCallIntent,
GroupCallState,
GroupCallType,
GroupCallStatsReportEvent,
} from "./webrtc/groupCall";
export type { GroupCall } from "./webrtc/groupCall";
export { CryptoEvent } from "./crypto";
export { SlidingSyncEvent } from "./sliding-sync";
export { MediaHandlerEvent } from "./webrtc/mediaHandler";
export { CallEvent } from "./webrtc/call";
export { CallFeedEvent } from "./webrtc/callFeed";
export { StatsReport } from "./webrtc/stats/statsReport";
export { RelationsEvent } from "./models/relations";
export { LocalStorageErrors } from "./store/local-storage-events-emitter";

/**
* Types supporting cryptography.
Expand Down

0 comments on commit f005984

Please sign in to comment.