6 lines
204 B
TypeScript
Raw Normal View History

import { IBaseProtocolCore, IBaseProtocolSDK } from "./protocols.js";
import type { ISender } from "./sender.js";
export type ILightPush = ISender &
IBaseProtocolSDK & { protocol: IBaseProtocolCore };