You've already forked matrix-js-sdk
mirror of
https://github.com/matrix-org/matrix-js-sdk.git
synced 2025-11-25 05:23:13 +03:00
Export typed event emitter key types (#3597)
* Export typed event emitter key types * Update src/matrix.ts
This commit is contained in:
committed by
GitHub
parent
13fec49e74
commit
f005984df3
@@ -63,9 +63,22 @@ export * as SecretStorage from "./secret-storage";
|
|||||||
export type { ICryptoCallbacks } from "./crypto"; // used to be located here
|
export type { ICryptoCallbacks } from "./crypto"; // used to be located here
|
||||||
export { createNewMatrixCall } from "./webrtc/call";
|
export { createNewMatrixCall } from "./webrtc/call";
|
||||||
export type { MatrixCall } 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 type { GroupCall } from "./webrtc/groupCall";
|
||||||
export { CryptoEvent } from "./crypto";
|
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.
|
* Types supporting cryptography.
|
||||||
|
|||||||
Reference in New Issue
Block a user