mirror of
https://github.com/logos-messaging/js-waku.git
synced 2026-01-16 04:33:12 +00:00
* feat: lighten retry logic for LightPush * update tests * remove base protocol sdk from light push, add unit tests for light push * remove replaced test * ensure numPeersToUse is respected * skip tests
5 lines
165 B
TypeScript
5 lines
165 B
TypeScript
import { IBaseProtocolCore } from "./protocols.js";
|
|
import type { ISender } from "./sender.js";
|
|
|
|
export type ILightPush = ISender & { protocol: IBaseProtocolCore };
|