fix(ts): exports

This commit is contained in:
Artemy Egorov 2024-07-28 22:01:17 +03:00
parent 306cc30791
commit bac4c25681
2 changed files with 2 additions and 5 deletions

View file

@ -9,6 +9,7 @@
],
"scripts": {
"build": "tsc",
"prepublishOnly": "npm run build",
"start": "node ./dist/index.js",
"bstart": "tsc && node ./dist/index.js",
"lint": "eslint ./src",

View file

@ -1,5 +1 @@
import El from "./daletl/tags/el";
import Heading from "./daletl/tags/heading";
export { parse, RootClass } from "./daletl/main";
export { El, Heading };
export * from "./daletl/types";