mirror of
https://github.com/fluencelabs/libp2p-ts
synced 2025-04-01 01:41:06 +00:00
15 lines
424 B
TypeScript
15 lines
424 B
TypeScript
// 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');
|
|
|
|
declare type LibP2pSecio = {
|
|
tag: '/secio/1.0.0',
|
|
|
|
encrypt (localId: PeerId, conn: any, remoteId: PeerId, callback: () => any): void
|
|
}
|
|
|
|
export = LibP2pSecio;
|