mirror of
https://github.com/logos-messaging/js-waku.git
synced 2026-01-25 17:13:12 +00:00
12 lines
293 B
TypeScript
12 lines
293 B
TypeScript
|
|
import type { IDecodedMessage } from "./message.js";
|
||
|
|
|
||
|
|
export interface IAsyncIterator<T extends IDecodedMessage> {
|
||
|
|
iterator: AsyncIterator<T>;
|
||
|
|
stop: Unsubscribe;
|
||
|
|
}
|
||
|
|
|
||
|
|
export type Unsubscribe = () => void | Promise<void>;
|
||
|
|
|
||
|
|
export type PubSubTopic = string;
|
||
|
|
export type ContentTopic = string;
|