From 8e9d44ac130afcf06743dc3fd223c3325f211c58 Mon Sep 17 00:00:00 2001 From: iapyang Date: Thu, 4 Jun 2020 14:32:05 +0800 Subject: [PATCH] =?UTF-8?q?chore:=20fix=E6=89=93=E5=8C=85?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- typescript/fix/fix.ie.ts | 5 +++++ typescript/fix/fix.ts | 5 +++++ 2 files changed, 10 insertions(+) create mode 100644 typescript/fix/fix.ie.ts create mode 100644 typescript/fix/fix.ts diff --git a/typescript/fix/fix.ie.ts b/typescript/fix/fix.ie.ts new file mode 100644 index 000000000..df4502015 --- /dev/null +++ b/typescript/fix/fix.ie.ts @@ -0,0 +1,5 @@ +// @ts-ignore +import * as Fix from "../../dist/fix/fix.ie.js"; + +// @ts-ignore +_global.Fix = Fix; diff --git a/typescript/fix/fix.ts b/typescript/fix/fix.ts new file mode 100644 index 000000000..d7be36640 --- /dev/null +++ b/typescript/fix/fix.ts @@ -0,0 +1,5 @@ +// @ts-ignore +import * as Fix from "../../dist/fix/fix.js"; + +// @ts-ignore +_global.Fix = Fix;