mirror of
https://github.com/logos-messaging/logos-delivery-js.git
synced 2026-03-10 19:53:10 +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 };
|