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 ed33823 commit e1be2cfCopy full SHA for e1be2cf
src/core.ts
@@ -1,3 +1,13 @@
1
import { Eta as EtaCore } from "./internal.ts";
2
3
+export type { EtaConfig, Options } from "./config.ts";
4
+export type { TemplateFunction } from "./compile.ts";
5
+export {
6
+ EtaError,
7
+ EtaFileResolutionError,
8
+ EtaNameResolutionError,
9
+ EtaParseError,
10
+ EtaRuntimeError,
11
+} from "./err.ts";
12
+
13
export class Eta extends EtaCore {}
src/index.ts
@@ -2,6 +2,7 @@ import { readFile, resolvePath } from "./file-handling.ts";
export type { EtaConfig, Options } from "./config.ts";
export {
EtaError,
EtaFileResolutionError,
0 commit comments