@types/archiver
Advanced tools
Comparing version 0.15.34 to 0.15.35
@@ -21,8 +21,16 @@ // Type definitions for archiver v0.15.0 | ||
interface nameInterface { | ||
name?: string; | ||
} | ||
interface Archiver extends STREAM.Transform { | ||
pipe(writeStream: FS.WriteStream): void; | ||
declare function archiver(format: string, options?: archiver.Options): archiver.Archiver; | ||
declare namespace archiver { | ||
export function create(format: string, options?: Options): Archiver; | ||
export interface nameInterface { | ||
name?: string; | ||
} | ||
export interface Archiver extends STREAM.Transform { | ||
pipe(writeStream: FS.WriteStream): void; | ||
append(source: FS.ReadStream | Buffer | string, name: nameInterface): void; | ||
@@ -34,15 +42,10 @@ | ||
bulk(mappings: any): void; | ||
finalize(): void; | ||
} | ||
finalize(): void; | ||
} | ||
interface Options { | ||
export interface Options { | ||
} | ||
} | ||
declare function archiver(format: string, options?: Options): Archiver; | ||
declare namespace archiver { | ||
function create(format: string, options?: Options): Archiver; | ||
} | ||
export = archiver; |
{ | ||
"name": "@types/archiver", | ||
"version": "0.15.34", | ||
"version": "0.15.35", | ||
"description": "TypeScript definitions for archiver v0.15.0", | ||
@@ -18,3 +18,3 @@ "license": "MIT", | ||
"typings": "index.d.ts", | ||
"typesPublisherContentHash": "98c0eb470432945bde2792d2a39627d1d133ea2ad1ab2ea5d1055aa66b30d320" | ||
"typesPublisherContentHash": "5831766782e5634a1ecd84a49848ff6fc9b4cf53f03f599624a61e06ea6a5279" | ||
} |
@@ -11,3 +11,3 @@ # Installation | ||
Additional Details | ||
* Last updated: Wed, 26 Oct 2016 19:23:24 GMT | ||
* Last updated: Mon, 14 Nov 2016 19:34:54 GMT | ||
* File structure: ProperModule | ||
@@ -14,0 +14,0 @@ * Library Dependencies: node |
@@ -11,4 +11,4 @@ { | ||
], | ||
"libraryMajorVersion": "0", | ||
"libraryMinorVersion": "15", | ||
"libraryMajorVersion": 0, | ||
"libraryMinorVersion": 15, | ||
"libraryName": "archiver v0.15.0", | ||
@@ -30,3 +30,3 @@ "typingsPackageName": "archiver", | ||
"hasPackageJson": false, | ||
"contentHash": "98c0eb470432945bde2792d2a39627d1d133ea2ad1ab2ea5d1055aa66b30d320" | ||
"contentHash": "5831766782e5634a1ecd84a49848ff6fc9b4cf53f03f599624a61e06ea6a5279" | ||
} |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
3454