mirror of
https://github.com/logos-messaging/js-waku.git
synced 2026-03-15 00:53:09 +00:00
28 lines
682 B
TypeScript
28 lines
682 B
TypeScript
import { BloomFilter } from "./bloom_filter/bloom.js";
|
|
|
|
export {
|
|
MessageChannel,
|
|
MessageChannelEvent,
|
|
MessageChannelOptions,
|
|
isContentMessage,
|
|
isSyncMessage,
|
|
isEphemeralMessage,
|
|
Message,
|
|
ContentMessage,
|
|
SyncMessage,
|
|
EphemeralMessage,
|
|
type HistoryEntry,
|
|
type ChannelId,
|
|
type MessageChannelEvents,
|
|
type ParticipantId,
|
|
type MessageId
|
|
} from "./message_channel/index.js";
|
|
|
|
/**
|
|
* @deprecated Use ParticipantId instead. SenderId has been renamed to ParticipantId
|
|
* to better reflect that it represents a channel participant, not just a message sender.
|
|
*/
|
|
export type SenderId = import("./message_channel/index.js").ParticipantId;
|
|
|
|
export { BloomFilter };
|