mirror of
https://github.com/fluencelabs/libp2p-ts
synced 2025-04-01 01:41:06 +00:00
14 lines
416 B
TypeScript
14 lines
416 B
TypeScript
// Type definitions for libp2p-websockets 0.12.0
|
|
// Project: https://github.com/libp2p/js-libp2p-websockets
|
|
// Definitions by: Jaco Greeff <https://github.com/jacogr>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
|
|
/// <reference types="interface-transport"/>
|
|
|
|
declare class LibP2pWebsockets implements LibP2pTransport {
|
|
}
|
|
|
|
declare module 'libp2p-websockets' {
|
|
export default LibP2pWebsockets;
|
|
}
|