Remove empty namespace from backo2 typings

This commit is contained in:
Retsam
2018-06-01 13:10:21 -04:00
parent 6ee1eb467f
commit 3946686b7e
2 changed files with 1 additions and 2 deletions

View File

@@ -1,4 +1,4 @@
import * as Backoff from "backo2";
import Backoff = require("backo2");
const backoff = new Backoff();
const backoff2 = new Backoff({});

View File

@@ -32,6 +32,5 @@ declare class Backoff {
*/
setJitter(jitter: number): void;
}
declare namespace Backoff {}
export = Backoff;