• Parameters

    • outboundCallback: any

    Returns {
        deliverInbound: ((...args: any[]) => void);
        endowments: {
            callOutbound: ((...args: any[]) => any);
            registerInboundCallback: ((inbound: any) => void);
        };
        srcPath: string;
    }

    • deliverInbound: ((...args: any[]) => void)
        • (...args): void
        • Parameters

          • Rest...args: any[]

          Returns void

    • endowments: {
          callOutbound: ((...args: any[]) => any);
          registerInboundCallback: ((inbound: any) => void);
      }
      • callOutbound: ((...args: any[]) => any)
          • (...args): any
          • Parameters

            • Rest...args: any[]

            Returns any

      • registerInboundCallback: ((inbound: any) => void)
          • (inbound): void
          • Parameters

            • inbound: any

            Returns void

    • srcPath: string