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