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

@types/pg

Package Overview
Dependencies
Maintainers
1
Versions
99
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@types/pg - npm Package Compare versions

Comparing version 7.4.4 to 7.4.5

18

pg/index.d.ts

@@ -56,9 +56,2 @@ // Type definitions for pg 7.4

export interface QueryResult {
command: string;
rowCount: number;
oid: number;
rows: any[];
}
export interface FieldDef {

@@ -74,10 +67,17 @@ name: string;

export interface QueryArrayResult {
export interface QueryResultBase {
command: string;
rowCount: number;
oid: number;
rows: any[][];
fields: FieldDef[];
}
export interface QueryResult extends QueryResultBase {
rows: any[];
}
export interface QueryArrayResult extends QueryResultBase {
rows: any[][];
}
export interface Notification {

@@ -84,0 +84,0 @@ processId: number;

{
"name": "@types/pg",
"version": "7.4.4",
"version": "7.4.5",
"description": "TypeScript definitions for pg",

@@ -24,4 +24,4 @@ "license": "MIT",

},
"typesPublisherContentHash": "e92e783279a6851664180fd8952fa17ecf3fd162130ea406a224f3283b363e46",
"typesPublisherContentHash": "fb01c7557d4d2571425e41b8d0261dfd7a2412483e08cb1a81ed662e47986c67",
"typeScriptVersion": "2.0"
}

@@ -11,3 +11,3 @@ # Installation

Additional Details
* Last updated: Thu, 15 Feb 2018 19:14:38 GMT
* Last updated: Sat, 03 Mar 2018 00:41:20 GMT
* Dependencies: events, stream, pg-types, tls, node

@@ -14,0 +14,0 @@ * Global values: none

Sorry, the diff of this file is not supported yet

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