mirror of
https://github.com/logos-messaging/js-waku.git
synced 2026-04-28 14:33:11 +00:00
16 lines
405 B
TypeScript
16 lines
405 B
TypeScript
|
|
declare module 'libp2p-tcp' {
|
||
|
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
||
|
|
const TCP: any;
|
||
|
|
export = TCP;
|
||
|
|
}
|
||
|
|
declare module 'libp2p-mplex' {
|
||
|
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
||
|
|
const Mplex: any;
|
||
|
|
export = Mplex;
|
||
|
|
}
|
||
|
|
declare module 'libp2p-secio' {
|
||
|
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
||
|
|
const Secio: any;
|
||
|
|
export = Secio;
|
||
|
|
}
|