mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-28 16:43:10 +00:00
26 lines
797 B
TypeScript
26 lines
797 B
TypeScript
export { matrixPlugin } from "./src/channel.js";
|
|
export { MatrixClient } from "./src/matrix/sdk.js";
|
|
export type {
|
|
EncryptedFile,
|
|
MatrixDeviceVerificationStatus,
|
|
MatrixOwnDeviceDeleteResult,
|
|
MatrixOwnDeviceInfo,
|
|
MatrixOwnDeviceVerificationStatus,
|
|
MatrixRecoveryKeyVerificationResult,
|
|
MatrixRawEvent,
|
|
MatrixRoomKeyBackupResetResult,
|
|
MatrixRoomKeyBackupRestoreResult,
|
|
MatrixRoomKeyBackupStatus,
|
|
MatrixVerificationBootstrapResult,
|
|
MessageEventContent,
|
|
} from "./src/matrix/sdk.js";
|
|
export type {
|
|
MatrixVerificationMethod,
|
|
MatrixVerificationSummary,
|
|
} from "./src/matrix/sdk/verification-manager.js";
|
|
export { setMatrixRuntime } from "./src/runtime.js";
|
|
export {
|
|
MATRIX_IDB_SNAPSHOT_NAMESPACE,
|
|
resolveMatrixIdbSnapshotKey,
|
|
} from "./src/matrix/sdk/idb-persistence.js";
|