aboutsummaryrefslogtreecommitdiffstats
path: root/config.ts
diff options
context:
space:
mode:
authorMatěj Cepl <mcepl@cepl.eu>2023-01-22 14:06:25 +0100
committerMatěj Cepl <mcepl@cepl.eu>2023-01-22 14:32:17 +0100
commitb01e1e4c3907cea472284c3142a9860bb2992593 (patch)
tree234b27b5f902377753ded46f051bdd066c50c84d /config.ts
parent9e8931a65545595fea87132e77e70005556997d1 (diff)
downloadhesla-b01e1e4c3907cea472284c3142a9860bb2992593.tar.gz
Compiles cleanly
Diffstat (limited to 'config.ts')
-rw-r--r--config.ts5
1 files changed, 3 insertions, 2 deletions
diff --git a/config.ts b/config.ts
index c316066..a65dfa8 100644
--- a/config.ts
+++ b/config.ts
@@ -1,6 +1,7 @@
/// <reference path="require.d.ts" />
-import * as hes from "hesla";
+
+import { Hesla } from "hesla";
require([], () => {
- var thisHesla = new hes.Hesla();
+ var thisHesla = new Hesla();
});