Merge pull request #19567 from DefinitelyTyped/js-quantities-export

js-quantities: Use `export =`
This commit is contained in:
Nathan Shively-Sanders
2017-09-05 12:53:25 -07:00
committed by GitHub
2 changed files with 2 additions and 2 deletions

View File

@@ -69,4 +69,4 @@ declare namespace Qty {
type UnitSource = Qty | string;
}
export default Qty;
export = Qty;

View File

@@ -1,4 +1,4 @@
import Qty from "js-quantities";
import Qty = require("js-quantities");
declare function describe(desc: string, fn: () => void): void;
declare function it(desc: string, fn: () => void): void;