Files
openclaw/extensions/matrix/test-api.ts
2026-06-10 17:49:59 +09:00

27 lines
863 B
TypeScript

// Matrix API module exposes the plugin public contract.
export { matrixPlugin } from "./src/channel.js";
export { MatrixClient } from "./src/matrix/sdk.js";
export {
openMatrixIdbSnapshotStoreOptions,
openMatrixRecoveryKeyStoreOptions,
} from "./src/matrix/crypto-state-store.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";