Skip to content

Commit f468e20

Browse files
export "Options" and "EtaConfig" types in JSR (#295) (#297)
1 parent b0e2c30 commit f468e20

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/index.ts

+3-2
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,12 @@ import { Eta as EtaCore } from "./core.ts";
22
import { readFile, resolvePath } from "./file-handling.ts";
33
export {
44
EtaError,
5-
EtaParseError,
6-
EtaRuntimeError,
75
EtaFileResolutionError,
86
EtaNameResolutionError,
7+
EtaParseError,
8+
EtaRuntimeError,
99
} from "./err.ts";
10+
export { type EtaConfig, type Options } from "./config.ts";
1011

1112
export class Eta extends EtaCore {
1213
readFile = readFile;

0 commit comments

Comments
 (0)