Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@types/nedb

Package Overview
Dependencies
Maintainers
1
Versions
31
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@types/nedb - npm Package Compare versions

Comparing version 1.8.6 to 1.8.7

17

nedb/index.d.ts

@@ -8,6 +8,10 @@ // Type definitions for NeDB 1.8

/// <reference types="node" />
import { EventEmitter } from 'events';
export = Nedb;
export as namespace Nedb;
declare class Nedb {
declare class Nedb extends EventEmitter {
constructor(pathOrOptions?: string | Nedb.DataStoreOptions);

@@ -157,2 +161,13 @@

remove(query: any, cb?: (err: Error, n: number) => void): void;
addListener(event: 'compaction.done', listener: () => void): this;
on(event: 'compaction.done', listener: () => void): this;
once(event: 'compaction.done', listener: () => void): this;
prependListener(event: 'compaction.done', listener: () => void): this;
prependOnceListener(event: 'compaction.done', listener: () => void): this;
removeListener(event: 'compaction.done', listener: () => void): this;
off(event: 'compaction.done', listener: () => void): this;
listeners(event: 'compaction.done'): Array<() => void>;
rawListeners(event: 'compaction.done'): Array<() => void>;
listenerCount(type: 'compaction.done'): number;
}

@@ -159,0 +174,0 @@

9

nedb/package.json
{
"name": "@types/nedb",
"version": "1.8.6",
"version": "1.8.7",
"description": "TypeScript definitions for NeDB",

@@ -24,2 +24,3 @@ "license": "MIT",

"main": "",
"types": "index",
"repository": {

@@ -30,5 +31,7 @@ "type": "git",

"scripts": {},
"dependencies": {},
"typesPublisherContentHash": "9dec5d7b2e67f420273f32ea259de7d3ff78ed1556585420bc25a0999d930093",
"dependencies": {
"@types/node": "*"
},
"typesPublisherContentHash": "7571fb3365f1b5048f737734325c40d057dd1d5607bfc25ca67963d55674a7ac",
"typeScriptVersion": "2.0"
}

@@ -11,4 +11,4 @@ # Installation

Additional Details
* Last updated: Mon, 17 Sep 2018 17:19:24 GMT
* Dependencies: none
* Last updated: Mon, 31 Dec 2018 18:25:27 GMT
* Dependencies: @types/node
* Global values: Nedb

@@ -15,0 +15,0 @@

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc