libp2p-ts/libp2p-secio/index.d.ts

15 lines
424 B
TypeScript
Raw Normal View History

2018-06-21 15:23:22 +02:00
// Type definitions for libp2p-secio 0.10.0
// Project: https://github.com/libp2p/js-libp2p-secio
// Definitions by: Jaco Greeff <https://github.com/jacogr>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
import PeerId = require('peer-id');
2018-06-21 15:23:22 +02:00
declare type LibP2pSecio = {
tag: '/secio/1.0.0',
encrypt (localId: PeerId, conn: any, remoteId: PeerId, callback: () => any): void
}
export = LibP2pSecio;