From dc687f5ed0a905d5b874b67727e9904c7a077801 Mon Sep 17 00:00:00 2001 From: SheetJS Date: Sat, 21 Apr 2018 09:55:28 -0400 Subject: [PATCH] flow switch to module.exports --- bits/flow.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bits/flow.js b/bits/flow.js index 485fad7..722cb39 100644 --- a/bits/flow.js +++ b/bits/flow.js @@ -10,6 +10,6 @@ declare class PRINTJModule { _doit:(t:ParsedFmt, args:Args)=>string; _tokenize:(fmt:string)=>ParsedFmt; }; -declare module "./" { declare var exports:PRINTJModule }; -declare module "../" { declare var exports:PRINTJModule }; +declare module "./" { declare module.exports:PRINTJModule }; +declare module "../" { declare module.exports:PRINTJModule }; */