swarpc - v0.14.0
    Preparing search index...

    Type Alias PendingRequest

    type PendingRequest = {
        nodeId?: string;
        functionName: string;
        reject: (err: Error) => void;
        onProgress: (progress: any) => void;
        resolve: (result: any) => void;
    }
    Index

    Properties

    nodeId?: string

    ID of the node the request was sent to. udefined if running on a service worker

    functionName: string
    reject: (err: Error) => void
    onProgress: (progress: any) => void
    resolve: (result: any) => void