freeport: Add namespace declaration (#10063)

Enables importing with ES6 import syntax.
This commit is contained in:
Peter Burns 2016-07-12 23:06:42 -07:00 committed by Mohamed Hegazy
parent 837a56daa3
commit 6d3dfa2fc3

1
freeport/index.d.ts vendored
View File

@ -5,5 +5,6 @@
declare function freeport(cb: (err: Error, port: number) => void): void;
declare namespace freeport {}
export = freeport;