Documentation
    Preparing search index...

    Type Alias ILightPush

    type ILightPush = {
        multicodec: string[];
        send: (
            encoder: IEncoder,
            message: IMessage,
            options?: ISendOptions,
        ) => Promise<LightPushSDKResult>;
        start: () => void;
        stop: () => void;
    }
    Index

    Properties

    multicodec: string[]
    send: (
        encoder: IEncoder,
        message: IMessage,
        options?: ISendOptions,
    ) => Promise<LightPushSDKResult>
    start: () => void
    stop: () => void