diff options
author | Matěj Cepl <mcepl@cepl.eu> | 2023-01-22 14:06:25 +0100 |
---|---|---|
committer | Matěj Cepl <mcepl@cepl.eu> | 2023-01-22 14:32:17 +0100 |
commit | b01e1e4c3907cea472284c3142a9860bb2992593 (patch) | |
tree | 234b27b5f902377753ded46f051bdd066c50c84d /config.ts | |
parent | 9e8931a65545595fea87132e77e70005556997d1 (diff) | |
download | hesla-b01e1e4c3907cea472284c3142a9860bb2992593.tar.gz |
Compiles cleanly
Diffstat (limited to 'config.ts')
-rw-r--r-- | config.ts | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -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(); }); |