mirror of
https://github.com/fluencelabs/libp2p-ts
synced 2025-03-31 09:21:04 +00:00
17 lines
387 B
TypeScript
17 lines
387 B
TypeScript
// Type definitions for libsodium 0.7.3
|
|
// Project: https://github.com/jedisct1/libsodium.js
|
|
// Definitions by: Jaco Greeff <https://github.com/jacogr>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
|
|
/// <reference types="node"/>
|
|
|
|
declare module 'libsodium-wrappers' {
|
|
type LibSodium = {
|
|
ready: Promise<any>;
|
|
}
|
|
|
|
const sodium: LibSodium;
|
|
|
|
export default sodium;
|
|
}
|