mirror of
https://github.com/fluencelabs/libp2p-ts
synced 2025-04-24 13:22:13 +00:00
15 lines
435 B
TypeScript
15 lines
435 B
TypeScript
// 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
|
|
|
|
// @ts-ignore
|
|
import Transport from 'interface-transport';
|
|
|
|
declare module 'libp2p-webrtc-direct' {
|
|
export class LibP2pWebRtcDirect implements Transport {
|
|
}
|
|
|
|
export default LibP2pWebRtcDirect;
|
|
}
|