We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d7f15a8 commit a6d536dCopy full SHA for a6d536d
src/index.ts
@@ -1,11 +1,6 @@
1
"use strict";
2
3
-import executeFunc from "./functions/executor";
4
-import getSupportedLanguagesFunc from "./functions/supported-languages";
5
-import { Language } from "./constants";
6
-import lxc from "./lxc";
7
-
8
-export const languages = Language;
9
-export const execute = executeFunc;
10
-export const LXC = lxc;
11
-export const getSupportedLanguages = getSupportedLanguagesFunc;
+export { Language as languages } from "./constants";
+export { default as execute } from "./functions/executor";
+export { default as LXC } from "./lxc";
+export { default as getSupportedLanguages } from "./functions/supported-languages";
0 commit comments