2020-04-03 13:33:13 +02:00

15 lines
398 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
/// <reference types="libp2p"/>
declare type LibP2pSecio = LibP2p.ConnectionEncryption;
declare module 'libp2p-secio' {
const secio: LibP2pSecio;
export default secio;
}