1
Fork 0

typescript(translucid): fixed the bug

Signed-off-by: prescientmoon <git@moonythm.dev>
This commit is contained in:
Matei Adriel 2019-01-22 20:49:50 +02:00 committed by prescientmoon
parent 4427e45702
commit 656e41473c
Signed by: prescientmoon
SSH key fingerprint: SHA256:UUF9JT2s8Xfyv76b8ZuVL7XrmimH4o49p4b+iexbVH4
4 changed files with 9 additions and 0 deletions

View file

@ -51,3 +51,4 @@ class Translucid {
}); });
} }
} }
exports.Translucid = Translucid;

View file

@ -60,3 +60,4 @@ class Translucid {
}); });
} }
} }
export {Translucid};

View file

@ -0,0 +1,4 @@
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
const app_js_1 = require("./app.js");
const { app, http, translucid } = app_js_1.QuickServer(8000);

View file

@ -0,0 +1,3 @@
import {QuickServer} from "./app.js";
const {app,http,translucid} = QuickServer(8000);