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