mirror of https://github.com/waku-org/js-waku.git
Improve importing of Muxed Stream type
This commit is contained in:
parent
2f5e75166f
commit
a0d3a21762
|
@ -1,4 +1,5 @@
|
||||||
import Libp2p, { Connection, Libp2pModules, Libp2pOptions } from 'libp2p';
|
import Libp2p, { Connection, Libp2pModules, Libp2pOptions } from 'libp2p';
|
||||||
|
import { MuxedStream } from 'libp2p-interfaces/dist/src/stream-muxer/types';
|
||||||
import Mplex from 'libp2p-mplex';
|
import Mplex from 'libp2p-mplex';
|
||||||
import { bytes } from 'libp2p-noise/dist/src/@types/basic';
|
import { bytes } from 'libp2p-noise/dist/src/@types/basic';
|
||||||
import { Noise } from 'libp2p-noise/dist/src/noise';
|
import { Noise } from 'libp2p-noise/dist/src/noise';
|
||||||
|
@ -160,7 +161,7 @@ export class Waku {
|
||||||
* @param peer The peer to dial
|
* @param peer The peer to dial
|
||||||
*/
|
*/
|
||||||
async dial(peer: PeerId | Multiaddr | string): Promise<{
|
async dial(peer: PeerId | Multiaddr | string): Promise<{
|
||||||
stream: import('libp2p-interfaces/src/stream-muxer/types').MuxedStream;
|
stream: MuxedStream;
|
||||||
protocol: string;
|
protocol: string;
|
||||||
}> {
|
}> {
|
||||||
return this.libp2p.dialProtocol(peer, [RelayCodec, StoreCodec]);
|
return this.libp2p.dialProtocol(peer, [RelayCodec, StoreCodec]);
|
||||||
|
|
Loading…
Reference in New Issue