1
0
mirror of https://github.com/fluencelabs/libp2p-ts synced 2025-03-31 17:31:05 +00:00

15 lines
392 B
TypeScript
Raw Normal View History

2018-06-21 15:15:18 +02:00
// Type definitions for libp2p-tcp 0.12.0
// Project: https://github.com/libp2p/js-libp2p-tcp
// Definitions by: Jaco Greeff <https://github.com/jacogr>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
2018-06-22 21:00:40 +02:00
declare module 'libp2p-tcp' {
2018-06-22 15:43:18 +02:00
// @ts-ignore
2018-06-22 16:38:26 +02:00
import { Transport } from 'interface-transport';
2018-06-22 15:43:18 +02:00
export class LibP2pTcp implements Transport {
}
2018-06-22 16:01:52 +02:00
export default LibP2pTcp;
2018-06-22 15:43:18 +02:00
}