Skip to content

Commit

Permalink
fix module declaration
Browse files Browse the repository at this point in the history
  • Loading branch information
aethernet committed Nov 29, 2022
1 parent 2060be3 commit ed15cd2
Showing 1 changed file with 1 addition and 15 deletions.
16 changes: 1 addition & 15 deletions typings/gunzip-maybe/index.d.ts
Original file line number Diff line number Diff line change
@@ -1,15 +1 @@
// Type definitions for gunzip-maybe 1.4
// Project: https://github.com/mafintosh/gunzip-maybe
// Definitions by: Thomas Hobson <https://github.com/hexf>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped

// Hacked by Edwin to use default export and remove the need for esinterop

/// <reference types="node" />
declare module "gunzip-maybe" {
import * as stream from "stream";

function gunzip(maxRecursion?: number): stream.Transform;

export default gunzip;
}
declare module "gunzip-maybe";

0 comments on commit ed15cd2

Please sign in to comment.