typescript(translucid): fixed the bug
Signed-off-by: prescientmoon <git@moonythm.dev>
This commit is contained in:
parent
4427e45702
commit
656e41473c
|
@ -51,3 +51,4 @@ class Translucid {
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
exports.Translucid = Translucid;
|
||||||
|
|
|
@ -60,3 +60,4 @@ class Translucid {
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
export {Translucid};
|
||||||
|
|
4
typescript/translucid/test.js
Normal file
4
typescript/translucid/test.js
Normal 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);
|
3
typescript/translucid/test.ts
Normal file
3
typescript/translucid/test.ts
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
import {QuickServer} from "./app.js";
|
||||||
|
|
||||||
|
const {app,http,translucid} = QuickServer(8000);
|
Loading…
Reference in a new issue