15 lines
435 B
TypeScript
Raw Normal View History

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